Fix MinGW build due to bad pointers to ui.rc pixmaps stuff.
[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.0c-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.0c-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 eay32
30
31 DEFS=-DWIN32 -D__WXMSW__ -D_WINDOWS -DNOPCH
32 DEBUGFLAGS=-g -D__WXDEBUG__
33 CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
34 HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
35     script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h
36
37 ifdef USE_UPNP
38  INCLUDEPATHS += -I"C:\upnpc-exe-win32-20110215"
39  LIBPATHS += -L"C:\upnpc-exe-win32-20110215"
40  LIBS += -l miniupnpc -l iphlpapi
41  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
42 endif
43
44 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
45
46 OBJS= \
47     obj/util.o \
48     obj/script.o \
49     obj/db.o \
50     obj/net.o \
51     obj/irc.o \
52     obj/main.o \
53     obj/rpc.o \
54     obj/init.o \
55     cryptopp/obj/sha.o \
56     cryptopp/obj/cpu.o
57
58
59 all: bitcoin.exe
60
61
62 obj/%.o: %.cpp $(HEADERS)
63         g++ -c $(CFLAGS) -DGUI -o $@ $<
64
65 cryptopp/obj/%.o: cryptopp/%.cpp
66         g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
67
68 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
69         windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<
70
71 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/ui_res.o
72         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
73
74
75 obj/nogui/%.o: %.cpp $(HEADERS)
76         g++ -c $(CFLAGS) -o $@ $<
77
78 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
79         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
80
81
82 clean:
83         -del /Q obj\*
84         -del /Q obj\nogui\*
85         -del /Q cryptopp\obj\*
86         -del /Q headers.h.gch