5aa5ebab40093f17457351ae0028b1b60ba74bce
[novacoin.git] / src / makefile.mingw
1 # Copyright (c) 2009-2010 Satoshi Nakamoto
2 # Distributed under the MIT/X11 software license, see the accompanying
3 # file license.txt or http://www.opensource.org/licenses/mit-license.php.
4
5 USE_UPNP:=0
6
7 INCLUDEPATHS= \
8  -I"C:\boost-1.47.0-mgw" \
9  -I"C:\db-4.8.30.NC-mgw\build_unix" \
10  -I"C:\openssl-1.0.0d-mgw\include" \
11  -I"C:\wxWidgets-2.9.2-mgw\lib\gcc_lib\mswud" \
12  -I"C:\wxWidgets-2.9.2-mgw\include"
13
14 LIBPATHS= \
15  -L"C:\boost-1.47.0-mgw\stage\lib" \
16  -L"C:\db-4.8.30.NC-mgw\build_unix" \
17  -L"C:\openssl-1.0.0d-mgw" \
18  -L"C:\wxWidgets-2.9.2-mgw\lib\gcc_lib"
19
20 WXLIBS= \
21  -l wxmsw29ud_html -l wxmsw29ud_core -l wxmsw29ud_adv -l wxbase29ud -l wxtiffd -l wxjpegd -l wxpngd -l wxzlibd
22
23 LIBS= \
24  -l boost_system-mgw45-mt-s-1_47 \
25  -l boost_filesystem-mgw45-mt-s-1_47 \
26  -l boost_program_options-mgw45-mt-s-1_47 \
27  -l boost_thread-mgw45-mt-s-1_47 \
28  -l db_cxx \
29  -l ssl \
30  -l crypto
31
32 DEFS=-DWIN32 -D__WXMSW__ -D_WINDOWS -DNOPCH -DUSE_SSL -DBOOST_THREAD_USE_LIB
33 DEBUGFLAGS=-g -D__WXDEBUG__
34 CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
35 HEADERS = \
36     base58.h \
37     bignum.h \
38     crypter.h \
39     db.h \
40     headers.h \
41     init.h \
42     irc.h \
43     key.h \
44     keystore.h \
45     main.h \
46     net.h \
47     noui.h \
48     protocol.h \
49     bitcoinrpc.h \
50     script.h \
51     serialize.h \
52     strlcpy.h \
53     ui.h \
54     uibase.h \
55     uint256.h \
56     util.h \
57     wallet.h
58
59 ifdef USE_UPNP
60  INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw"
61  LIBPATHS += -L"C:\miniupnpc-1.6-mgw"
62  LIBS += -l miniupnpc -l iphlpapi
63  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
64 endif
65
66 LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l shlwapi
67
68 OBJS= \
69     obj/crypter.o \
70     obj/db.o \
71     obj/init.o \
72     obj/irc.o \
73     obj/keystore.o \
74     obj/main.o \
75     obj/net.o \
76     obj/protocol.o \
77     obj/bitcoinrpc.o \
78     obj/script.o \
79     obj/util.o \
80     obj/wallet.o \
81     cryptopp/obj/sha.o \
82     cryptopp/obj/cpu.o
83
84
85 all: bitcoin.exe
86
87
88 obj/%.o: %.cpp $(HEADERS)
89         g++ -c $(CFLAGS) -DGUI -o $@ $<
90
91 cryptopp/obj/%.o: cryptopp/%.cpp
92         g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
93
94 obj/ui_res.o: ../share/ui.rc  ../share/pixmaps/bitcoin.ico ../share/pixmaps/check.ico ../share/pixmaps/send16.bmp ../share/pixmaps/send16mask.bmp ../share/pixmaps/send16masknoshadow.bmp ../share/pixmaps/send20.bmp ../share/pixmaps/send20mask.bmp ../share/pixmaps/addressbook16.bmp ../share/pixmaps/addressbook16mask.bmp ../share/pixmaps/addressbook20.bmp ../share/pixmaps/addressbook20mask.bmp
95         windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<
96
97 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/ui_res.o
98         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
99
100
101 obj/nogui/%.o: %.cpp $(HEADERS)
102         g++ -c $(CFLAGS) -o $@ $<
103
104 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
105         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
106
107 obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS)
108         g++ -c $(CFLAGS) -o $@ test/test_bitcoin.cpp
109
110 test_bitcoin.exe: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%))
111         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
112
113 clean:
114         -del /Q bitcoin bitcoind test_bitcoin
115         -del /Q obj\*
116         -del /Q obj\nogui\*
117         -del /Q obj\test\*
118         -del /Q cryptopp\obj\*
119         -del /Q test\*.o
120         -del /Q headers.h.gch