aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-07-01 17:38:24 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-07-01 17:38:24 -0700
commitcfbcb1de66b7a593b354ff1864a82db3b9ddca46 (patch)
tree1a85ea5c14c57d034f8ce9e221ce9cb6c5a4ee96
parentc4286dc6eeea90c9ddb509a2019423d032cbad38 (diff)
parent58d9badfe2170742fe66551acf8e4c02e8f3a98c (diff)
downloadbitcoin-cfbcb1de66b7a593b354ff1864a82db3b9ddca46.tar.xz
Merge pull request #373 from EricJ2190/master
Another Visual C++ Makefile Update
-rw-r--r--src/makefile.vc12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/makefile.vc b/src/makefile.vc
index d5aba3e69f..b25ba60c50 100644
--- a/src/makefile.vc
+++ b/src/makefile.vc
@@ -46,7 +46,7 @@ LIBS=$(LIBS) \
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 keystore.h
OBJS= \
obj\util.obj \
@@ -54,7 +54,9 @@ OBJS= \
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\net.obj: $(HEADERS)
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\net.obj: $(HEADERS)
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)