Cleanup makefiles such that diffs to them are smaller
[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.43.0-mgw" \
9  -I"C:\db-4.7.25.NC-mgw\build_unix" \
10  -I"C:\openssl-1.0.0d-mgw\include" \
11  -I"C:\wxWidgets-2.9.1-mgw\lib\gcc_lib\mswud" \
12  -I"C:\wxWidgets-2.9.1-mgw\include"
13
14 LIBPATHS= \
15  -L"C:\boost-1.43.0-mgw\stage\lib" \
16  -L"C:\db-4.7.25.NC-mgw\build_unix" \
17  -L"C:\openssl-1.0.0d-mgw" \
18  -L"C:\wxWidgets-2.9.1-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_43 \
25  -l boost_filesystem-mgw45-mt-s-1_43 \
26  -l boost_program_options-mgw45-mt-s-1_43 \
27  -l boost_thread-mgw45-mt-s-1_43 \
28  -l db_cxx \
29  -l ssl \
30  -l crypto
31
32 DEFS=-DWIN32 -D__WXMSW__ -D_WINDOWS -DNOPCH -DUSE_SSL
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     rpc.h \
49     script.h \
50     serialize.h \
51     strlcpy.h \
52     ui.h \
53     uibase.h \
54     uint256.h \
55     util.h \
56     wallet.h
57
58 ifdef USE_UPNP
59  INCLUDEPATHS += -I"C:\upnpc-exe-win32-20110215"
60  LIBPATHS += -L"C:\upnpc-exe-win32-20110215"
61  LIBS += -l miniupnpc -l iphlpapi
62  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
63 endif
64
65 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
66
67 OBJS= \
68     obj/crypter.o \
69     obj/db.o \
70     obj/init.o \
71     obj/irc.o \
72     obj/keystore.o \
73     obj/main.o \
74     obj/net.o \
75     obj/rpc.o \
76     obj/script.o \
77     obj/util.o \
78     obj/wallet.o \
79     cryptopp/obj/sha.o \
80     cryptopp/obj/cpu.o
81
82
83 all: bitcoin.exe
84
85
86 obj/%.o: %.cpp $(HEADERS)
87         g++ -c $(CFLAGS) -DGUI -o $@ $<
88
89 cryptopp/obj/%.o: cryptopp/%.cpp
90         g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
91
92 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
93         windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<
94
95 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/ui_res.o
96         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
97
98
99 obj/nogui/%.o: %.cpp $(HEADERS)
100         g++ -c $(CFLAGS) -o $@ $<
101
102 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
103         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
104
105 obj/test/%.o: obj/test/%.cpp $(HEADERS)
106         g++ -c $(CFLAGS) -o $@ $<
107
108 test_bitcoin.exe: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%))
109         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
110
111 clean:
112         -del /Q bitcoin bitcoind test_bitcoin
113         -del /Q obj\*
114         -del /Q obj\nogui\*
115         -del /Q obj\test\*
116         -del /Q cryptopp\obj\*
117         -del /Q test\*.o
118         -del /Q headers.h.gch