Revert "Update gitian descriptors to point at stable git repo"
[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.1b-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.1b-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 -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
27 DEBUGFLAGS=-g
28 CFLAGS=-mthreads -O2 -w -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
29
30 TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
31
32 ifdef USE_UPNP
33  INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw"
34  LIBPATHS += -L"C:\miniupnpc-1.6-mgw"
35  LIBS += -l miniupnpc -l iphlpapi
36  DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
37 endif
38
39 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
40
41 # TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are
42 HEADERS = $(wildcard *.h)
43
44 OBJS= \
45     obj/version.o \
46     obj/checkpoints.o \
47     obj/netbase.o \
48     obj/addrman.o \
49     obj/crypter.o \
50     obj/key.o \
51     obj/db.o \
52     obj/init.o \
53     obj/irc.o \
54     obj/keystore.o \
55     obj/main.o \
56     obj/net.o \
57     obj/protocol.o \
58     obj/bitcoinrpc.o \
59     obj/rpcdump.o \
60     obj/script.o \
61     obj/util.o \
62     obj/wallet.o \
63     obj/walletdb.o \
64     obj/noui.o
65
66
67 all: bitcoind.exe
68
69 obj/%.o: %.cpp $(HEADERS)
70         g++ -c $(CFLAGS) -o $@ $<
71
72 bitcoind.exe: $(OBJS:obj/%=obj/%)
73         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
74
75 TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
76
77 obj-test/%.o: test/%.cpp $(HEADERS)
78         g++ -c $(TESTDEFS) $(CFLAGS) -o $@ $<
79
80 test_bitcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
81         g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework $(LIBS)
82
83 clean:
84         -del /Q bitcoind test_bitcoin
85         -del /Q obj\*
86         -del /Q obj-test\*
87         -del /Q build.h