Build identification strings
[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.0d-mgw\include"
11
12 LIBPATHS= \
13  -L"C:\boost-1.47.0-mgw\stage\lib" \
14  -L"C:\db-4.8.30.NC-mgw\build_unix" \
15  -L"C:\openssl-1.0.0d-mgw"
16
17 LIBS= \
18  -l boost_system-mgw45-mt-s-1_47 \
19  -l boost_filesystem-mgw45-mt-s-1_47 \
20  -l boost_program_options-mgw45-mt-s-1_47 \
21  -l boost_thread-mgw45-mt-s-1_47 \
22  -l db_cxx \
23  -l ssl \
24  -l crypto
25
26 DEFS=-DWIN32 -D_WINDOWS -DNOPCH -DBOOST_THREAD_USE_LIB
27 DEBUGFLAGS=-g
28 CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
29
30
31 ifdef USE_UPNP
32  INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw"
33  LIBPATHS += -L"C:\miniupnpc-1.6-mgw"
34  LIBS += -l miniupnpc -l iphlpapi
35  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
36 endif
37
38 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
39
40 # TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are
41 HEADERS = $(wildcard *.h)
42
43 OBJS= \
44     obj/version.o \
45     obj/checkpoints.o \
46     obj/netbase.o \
47     obj/addrman.o \
48     obj/crypter.o \
49     obj/key.o \
50     obj/db.o \
51     obj/init.o \
52     obj/irc.o \
53     obj/keystore.o \
54     obj/main.o \
55     obj/net.o \
56     obj/protocol.o \
57     obj/bitcoinrpc.o \
58     obj/rpcdump.o \
59     obj/script.o \
60     obj/util.o \
61     obj/wallet.o \
62     obj/noui.o
63
64
65 all: bitcoind.exe
66
67 obj/%.o: %.cpp $(HEADERS)
68         g++ -c $(CFLAGS) -o $@ $<
69
70 bitcoind.exe: $(OBJS:obj/%=obj/%)
71         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
72
73 obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS)
74         g++ -c $(CFLAGS) -o $@ test/test_bitcoin.cpp
75
76 test_bitcoin.exe: obj/test/test_bitcoin.o $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
77         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
78
79 clean:
80         -del /Q bitcoind test_bitcoin
81         -del /Q obj\*
82         -del /Q obj\nogui\*
83         -del /Q obj\test\*
84         -del /Q test\*.o
85         -del /Q headers.h.gch
86         -del /Q build.h