Windows build: compile against openssl 1.0.1b
[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.1b-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.1b-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     checkpoints.h \
39     crypter.h \
40     db.h \
41     headers.h \
42     init.h \
43     irc.h \
44     key.h \
45     keystore.h \
46     main.h \
47     net.h \
48     noui.h \
49     protocol.h \
50     rpc.h \
51     script.h \
52     serialize.h \
53     strlcpy.h \
54     ui.h \
55     uibase.h \
56     uint256.h \
57     util.h \
58     wallet.h
59
60 ifdef USE_UPNP
61  INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw"
62  LIBPATHS += -L"C:\miniupnpc-1.6-mgw"
63  LIBS += -l miniupnpc -l iphlpapi
64  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
65 endif
66
67 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
68
69 OBJS= \
70     obj/checkpoints.o \
71     obj/crypter.o \
72     obj/db.o \
73     obj/init.o \
74     obj/irc.o \
75     obj/keystore.o \
76     obj/main.o \
77     obj/net.o \
78     obj/protocol.o \
79     obj/rpc.o \
80     obj/script.o \
81     obj/util.o \
82     obj/wallet.o \
83     cryptopp/obj/sha.o \
84     cryptopp/obj/cpu.o
85
86
87 all: bitcoin.exe
88
89
90 obj/%.o: %.cpp $(HEADERS)
91         g++ -c $(CFLAGS) -DGUI -o $@ $<
92
93 cryptopp/obj/%.o: cryptopp/%.cpp
94         g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
95
96 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
97         windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<
98
99 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/ui_res.o
100         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
101
102
103 obj/nogui/%.o: %.cpp $(HEADERS)
104         g++ -c $(CFLAGS) -o $@ $<
105
106 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
107         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
108
109 obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS)
110         g++ -c $(CFLAGS) -o $@ test/test_bitcoin.cpp
111
112 test_bitcoin.exe: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%))
113         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
114
115 clean:
116         -del /Q bitcoin bitcoind test_bitcoin
117         -del /Q obj\*
118         -del /Q obj\nogui\*
119         -del /Q obj\test\*
120         -del /Q cryptopp\obj\*
121         -del /Q test\*.o
122         -del /Q headers.h.gch