Add wallet privkey encryption.
[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=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
36     script.h db.h net.h irc.h keystore.h main.h wallet.h rpc.h uibase.h ui.h noui.h \
37     init.h crypter.h
38
39 ifdef USE_UPNP
40  INCLUDEPATHS += -I"C:\upnpc-exe-win32-20110215"
41  LIBPATHS += -L"C:\upnpc-exe-win32-20110215"
42  LIBS += -l miniupnpc -l iphlpapi
43  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
44 endif
45
46 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
47
48 OBJS= \
49     obj/util.o \
50     obj/script.o \
51     obj/db.o \
52     obj/net.o \
53     obj/irc.o \
54     obj/keystore.o \
55     obj/main.o \
56     obj/wallet.o \
57     obj/rpc.o \
58     obj/init.o \
59     obj/crypter.o \
60     cryptopp/obj/sha.o \
61     cryptopp/obj/cpu.o
62
63
64 all: bitcoin.exe
65
66
67 obj/%.o: %.cpp $(HEADERS)
68         g++ -c $(CFLAGS) -DGUI -o $@ $<
69
70 cryptopp/obj/%.o: cryptopp/%.cpp
71         g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
72
73 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
74         windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<
75
76 bitcoin.exe: $(OBJS) obj/ui.o obj/uibase.o obj/ui_res.o
77         g++ $(CFLAGS) -mwindows -Wl,--subsystem,windows -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS)
78
79
80 obj/nogui/%.o: %.cpp $(HEADERS)
81         g++ -c $(CFLAGS) -o $@ $<
82
83 bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
84         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
85
86 obj/test/%.o: obj/test/%.cpp $(HEADERS)
87         g++ -c $(CFLAGS) -o $@ $<
88
89 test_bitcoin: obj/test/test_bitcoin.o
90         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
91
92 clean:
93         -del /Q bitcoin bitcoind test_bitcoin
94         -del /Q obj\*
95         -del /Q obj\nogui\*
96         -del /Q obj\test\*
97         -del /Q cryptopp\obj\*
98         -del /Q test\*.o
99         -del /Q headers.h.gch