changeset 727:9f1cb2509227 draft

Further updated Visual C++ makefile.
author Eric Hosmer <EricJ2190@gmail.com>
date Fri, 01 Jul 2011 20:14:02 -0400
parents 08b0b05f6e64
children d7f6f0d31c26
files src/makefile.vc
diffstat 1 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/makefile.vc
+++ b/src/makefile.vc
@@ -46,7 +46,7 @@
 DEBUGFLAGS=/Os
 CFLAGS=/MD /c /nologo /EHsc /GR /Zm300 $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
 HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
-    script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h
+    script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h wallet.h
 
 OBJS= \
     obj\util.obj \
@@ -54,7 +54,9 @@
     obj\db.obj \
     obj\net.obj \
     obj\irc.obj \
+	obj\keystore.obj \
     obj\main.obj \
+	obj\wallet.obj \
     obj\rpc.obj \
     obj\init.obj
 
@@ -81,8 +83,12 @@
 
 obj\irc.obj: $(HEADERS)
 
+obj\keystore.obj: $(HEADERS)
+
 obj\main.obj: $(HEADERS)
 
+obj\wallet.obj: $(HEADERS)
+
 obj\rpc.obj: $(HEADERS)
 
 obj\init.obj: $(HEADERS)
@@ -117,8 +123,12 @@
 
 obj\nogui\irc.obj: $(HEADERS)
 
+obj\nogui\keystore.obj: $(HEADERS)
+
 obj\nogui\main.obj: $(HEADERS)
 
+obj\nogui\wallet.obj: $(HEADERS)
+
 obj\nogui\rpc.obj: $(HEADERS)
 
 obj\nogui\init.obj: $(HEADERS)