Fix CRLF
[novacoin.git] / 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
6 # for wxWidgets-2.8.x, search and replace "mswud"->"mswd" and "29u"->"28"
7
8 INCLUDEPATHS= \
9  -I"/boost" \
10  -I"/db/build_unix" \
11  -I"/openssl/include" \
12  -I"/wxwidgets/lib/gcc_lib/mswud" \
13  -I"/wxwidgets/include"
14
15 LIBPATHS= \
16  -L"/boost/stage/lib" \
17  -L"/db/build_unix" \
18  -L"/openssl/out" \
19  -L"/wxwidgets/lib/gcc_lib"
20
21 WXLIBS= \
22  -l wxmsw29ud_html -l wxmsw29ud_core -l wxmsw29ud_adv -l wxbase29ud -l wxtiffd -l wxjpegd -l wxpngd -l wxzlibd
23
24 LIBS= \
25  -l libboost_system-mgw34-mt-d -l libboost_filesystem-mgw34-mt-d \
26  -l db_cxx \
27  -l eay32 \
28  -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
29
30 WXDEFS=-DWIN32 -D__WXMSW__ -D_WINDOWS -DNOPCH
31 DEBUGFLAGS=-g -D__WXDEBUG__
32 CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(WXDEFS) $(INCLUDEPATHS)
33 HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
34     script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h init.h sha.h
35
36
37 all: bitcoin.exe
38
39
40 headers.h.gch: headers.h $(HEADERS)
41         g++ -c $(CFLAGS) -o $@ $<
42
43 obj/%.o: %.cpp $(HEADERS) headers.h.gch
44         g++ -c $(CFLAGS) -o $@ $<
45
46 obj/sha.o: sha.cpp sha.h
47         g++ -c $(CFLAGS) -O3 -o $@ $<
48
49 obj/ui_res.o: 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
50         windres $(WXDEFS) $(INCLUDEPATHS) -o $@ -i $<
51
52 OBJS= \
53     obj/util.o \
54     obj/script.o \
55     obj/db.o \
56     obj/net.o \
57     obj/irc.o \
58     obj/main.o \
59     obj/rpc.o \
60     obj/init.o
61
62 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/sha.o obj/ui_res.o
63         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
64
65
66 obj/nogui/%.o: %.cpp $(HEADERS)
67         g++ -c $(CFLAGS) -DwxUSE_GUI=0 -o $@ $<
68
69 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/sha.o obj/ui_res.o
70         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -l wxbase29ud $(LIBS)
71
72
73 clean:
74         -del /Q obj\*
75         -del /Q obj\nogui\*
76         -del /Q headers.h.gch