Skip to content

Commit

Permalink
Merge pull request bitcoin#418 from EricJ2190/master
Browse files Browse the repository at this point in the history
Update makefile.vc for wallet encryptions.
  • Loading branch information
Jeff Garzik committed Jul 16, 2011
2 parents 5b0fc31 + 88cab1e commit 133ccbe
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ DEFS=$(DEFS) /DUSE_UPNP=$(USE_UPNP)
!ENDIF

LIBS=$(LIBS) \
kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib ws2_32.lib shlwapi.lib
kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib ws2_32.lib shlwapi.lib iphlpapi.lib

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 wallet.h keystore.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 crypter.h

OBJS= \
obj\util.obj \
Expand All @@ -58,7 +58,8 @@ OBJS= \
obj\main.obj \
obj\wallet.obj \
obj\rpc.obj \
obj\init.obj
obj\init.obj \
obj\crypter.obj

CRYPTOPP_OBJS= \
cryptopp\obj\sha.obj \
Expand Down Expand Up @@ -93,6 +94,8 @@ obj\rpc.obj: $(HEADERS)

obj\init.obj: $(HEADERS)

obj\crypter.obj: $(HEADERS)

obj\ui.obj: $(HEADERS)

obj\uibase.obj: $(HEADERS)
Expand Down

0 comments on commit 133ccbe

Please sign in to comment.