You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.9 KiB
116 lines
2.9 KiB
# Copyright (c) 2009-2010 Satoshi Nakamoto |
|
# Distributed under the MIT/X11 software license, see the accompanying |
|
# file license.txt or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
|
|
INCLUDEPATHS= \ |
|
/I"/boost" \ |
|
/I"/db/build_windows" \ |
|
/I"/openssl/include" \ |
|
/I"/wxwidgets/lib/vc_lib/mswud" \ |
|
/I"/wxwidgets/include" |
|
|
|
LIBPATHS= \ |
|
/LIBPATH:"/boost/stage/lib" \ |
|
/LIBPATH:"/db/build_windows/debug" \ |
|
/LIBPATH:"/openssl/out" \ |
|
/LIBPATH:"/wxwidgets/lib/vc_lib" |
|
|
|
WXLIBS=wxmsw29ud_html.lib wxmsw29ud_core.lib wxmsw29ud_adv.lib wxbase29ud.lib wxtiffd.lib wxjpegd.lib wxpngd.lib wxzlibd.lib |
|
|
|
LIBS= \ |
|
libboost_system-vc80-mt-gd.lib \ |
|
libboost_filesystem-vc80-mt-gd.lib \ |
|
libboost_program_options-vc80-mt-gd.lib \ |
|
libboost_thread-vc80-mt-gd.lib \ |
|
libdb47sd.lib \ |
|
libeay32.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 |
|
|
|
DEFS=/DWIN32 /D__WXMSW__ /D_WINDOWS /DNOPCH |
|
DEBUGFLAGS=/Zi /D__WXDEBUG__ |
|
CFLAGS=/c /nologo /MDd /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 |
|
|
|
OBJS= \ |
|
obj\util.obj \ |
|
obj\script.obj \ |
|
obj\db.obj \ |
|
obj\net.obj \ |
|
obj\irc.obj \ |
|
obj\main.obj \ |
|
obj\rpc.obj \ |
|
obj\init.obj \ |
|
cryptopp\obj\sha.obj \ |
|
cryptopp\obj\cpu.obj |
|
|
|
|
|
all: bitcoin.exe |
|
|
|
|
|
.cpp{obj}.obj: |
|
cl $(CFLAGS) /DGUI /Fo$@ %s |
|
|
|
obj\util.obj: $(HEADERS) |
|
|
|
obj\script.obj: $(HEADERS) |
|
|
|
obj\db.obj: $(HEADERS) |
|
|
|
obj\net.obj: $(HEADERS) |
|
|
|
obj\irc.obj: $(HEADERS) |
|
|
|
obj\main.obj: $(HEADERS) |
|
|
|
obj\rpc.obj: $(HEADERS) |
|
|
|
obj\init.obj: $(HEADERS) |
|
|
|
obj\ui.obj: $(HEADERS) |
|
|
|
obj\uibase.obj: $(HEADERS) |
|
|
|
cryptopp\obj\sha.obj: cryptopp\sha.cpp |
|
cl $(CFLAGS) /O2 /DCRYPTOPP_DISABLE_ASM /Fo$@ %s |
|
|
|
cryptopp\obj\cpu.obj: cryptopp\cpu.cpp |
|
cl $(CFLAGS) /O2 /DCRYPTOPP_DISABLE_ASM /Fo$@ %s |
|
|
|
obj\ui.res: ui.rc rc/bitcoin.ico rc/check.ico rc/send16.bmp rc/send16mask.bmp rc/send16masknoshadow.bmp rc/send20.bmp rc/send20mask.bmp rc/addressbook16.bmp rc/addressbook16mask.bmp rc/addressbook20.bmp rc/addressbook20mask.bmp |
|
rc $(INCLUDEPATHS) $(DEFS) /Fo$@ %s |
|
|
|
bitcoin.exe: $(OBJS) obj\ui.obj obj\uibase.obj obj\ui.res |
|
link /nologo /DEBUG /SUBSYSTEM:WINDOWS /OUT:$@ $(LIBPATHS) $** $(WXLIBS) $(LIBS) |
|
|
|
|
|
.cpp{obj\nogui}.obj: |
|
cl $(CFLAGS) /Fo$@ %s |
|
|
|
obj\nogui\util.obj: $(HEADERS) |
|
|
|
obj\nogui\script.obj: $(HEADERS) |
|
|
|
obj\nogui\db.obj: $(HEADERS) |
|
|
|
obj\nogui\net.obj: $(HEADERS) |
|
|
|
obj\nogui\irc.obj: $(HEADERS) |
|
|
|
obj\nogui\main.obj: $(HEADERS) |
|
|
|
obj\nogui\rpc.obj: $(HEADERS) |
|
|
|
obj\nogui\init.obj: $(HEADERS) |
|
|
|
bitcoind.exe: $(OBJS:obj\=obj\nogui\) obj\ui.res |
|
link /nologo /DEBUG /OUT:$@ $(LIBPATHS) $** $(LIBS) |
|
|
|
|
|
clean: |
|
-del /Q obj\* |
|
-del /Q obj\nogui\* |
|
-del /Q cryptopp\obj\* |
|
-del /Q *.ilk |
|
-del /Q *.pdb
|
|
|