fdcc6985e6d1f19d9edda87b36655ed542feba71
[novacoin.git] / src / makefile.unix
1 # Copyright (c) 2009-2010 Satoshi Nakamoto
2 # Distributed under the MIT/X11 software license, see the accompanying
3 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5 USE_UPNP:=0
6 USE_IPV6:=1
7 USE_LEVELDB:=1
8
9 LINK:=$(CXX)
10
11 DEFS=-DBOOST_SPIRIT_THREADSAFE
12
13 DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
14 LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
15
16 TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
17
18 LMODE = dynamic
19 LMODE2 = dynamic
20 ifdef STATIC
21         LMODE = static
22         ifeq (${STATIC}, all)
23                 LMODE2 = static
24         endif
25 else
26         TESTDEFS += -DBOOST_TEST_DYN_LINK
27 endif
28
29 # for boost 1.37, add -mt to the boost libraries
30 LIBS += \
31  -Wl,-B$(LMODE) \
32    -l boost_system$(BOOST_LIB_SUFFIX) \
33    -l boost_filesystem$(BOOST_LIB_SUFFIX) \
34    -l boost_program_options$(BOOST_LIB_SUFFIX) \
35    -l boost_thread$(BOOST_LIB_SUFFIX) \
36    -l db_cxx$(BDB_LIB_SUFFIX) \
37    -l ssl \
38    -l crypto
39
40 ifndef USE_UPNP
41         override USE_UPNP = -
42 endif
43 ifneq (${USE_UPNP}, -)
44         LIBS += -l miniupnpc
45         DEFS += -DUSE_UPNP=$(USE_UPNP)
46 endif
47
48 ifneq (${USE_IPV6}, -)
49         DEFS += -DUSE_IPV6=$(USE_IPV6)
50 endif
51
52 LIBS+= \
53  -Wl,-B$(LMODE2) \
54    -l z \
55    -l dl \
56    -l pthread
57
58
59 # Hardening
60 # Make some classes of vulnerabilities unexploitable in case one is discovered.
61 #
62     # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes
63     # -fstack-protector-all to be ignored unless -fno-stack-protector is used first.
64     # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722
65     HARDENING=-fno-stack-protector
66
67     # Stack Canaries
68     # Put numbers at the beginning of each stack frame and check that they are the same.
69     # If a stack buffer if overflowed, it writes over the canary number and then on return
70     # when that number is checked, it won't be the same and the program will exit with
71     # a "Stack smashing detected" error instead of being exploited.
72     HARDENING+=-fstack-protector-all -Wstack-protector
73
74     # Make some important things such as the global offset table read only as soon as
75     # the dynamic linker is finished building it. This will prevent overwriting of addresses
76     # which would later be jumped to.
77     LDHARDENING+=-Wl,-z,relro -Wl,-z,now
78
79     # Build position independent code to take advantage of Address Space Layout Randomization
80     # offered by some kernels.
81     # see doc/build-unix.txt for more information.
82     ifdef PIE
83         HARDENING+=-fPIE
84         LDHARDENING+=-pie
85     endif
86
87     # -D_FORTIFY_SOURCE=2 does some checking for potentially exploitable code patterns in
88     # the source such overflowing a statically defined buffer.
89     HARDENING+=-D_FORTIFY_SOURCE=2
90 #
91
92
93 DEBUGFLAGS=-g
94
95 # CXXFLAGS can be specified on the make command line, so we use xCXXFLAGS that only
96 # adds some defaults in front. Unfortunately, CXXFLAGS=... $(CXXFLAGS) does not work.
97 xCXXFLAGS=-O2 -msse2 -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter \
98     $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS)
99
100 # LDFLAGS can be specified on the make command line, so we use xLDFLAGS that only
101 # adds some defaults in front. Unfortunately, LDFLAGS=... $(LDFLAGS) does not work.
102 xLDFLAGS=$(LDHARDENING) $(LDFLAGS)
103
104 OBJS= \
105     obj/alert.o \
106     obj/version.o \
107     obj/checkpoints.o \
108     obj/netbase.o \
109     obj/addrman.o \
110     obj/crypter.o \
111     obj/key.o \
112     obj/db.o \
113     obj/init.o \
114     obj/irc.o \
115     obj/keystore.o \
116     obj/miner.o \
117     obj/main.o \
118     obj/net.o \
119     obj/protocol.o \
120     obj/bitcoinrpc.o \
121     obj/rpcdump.o \
122     obj/rpcnet.o \
123     obj/rpcmining.o \
124     obj/rpcwallet.o \
125     obj/rpcblockchain.o \
126     obj/rpcrawtransaction.o \
127     obj/script.o \
128     obj/sync.o \
129     obj/util.o \
130     obj/wallet.o \
131     obj/walletdb.o \
132     obj/noui.o \
133     obj/kernel.o \
134     obj/pbkdf2.o \
135     obj/scrypt.o \
136     obj/scrypt-x86.o \
137     obj/scrypt-x86_64.o \
138     obj/zerocoin/Accumulator.o \
139     obj/zerocoin/AccumulatorProofOfKnowledge.o \
140     obj/zerocoin/Coin.o \
141     obj/zerocoin/CoinSpend.o \
142     obj/zerocoin/Commitment.o \
143     obj/zerocoin/ParamGeneration.o \
144     obj/zerocoin/Params.o \
145     obj/zerocoin/SerialNumberSignatureOfKnowledge.o \
146     obj/zerocoin/SpendMetaData.o
147
148 all: novacoind
149
150 #
151 # LevelDB support
152 #
153 ifeq (${USE_LEVELDB}, 1)
154 LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
155 DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
156 DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
157 OBJS += obj/txdb-leveldb.o
158 leveldb/libleveldb.a:
159         @echo "Building LevelDB ..."; cd leveldb; make libleveldb.a libmemenv.a; cd ..;
160 obj/txdb-leveldb.o: leveldb/libleveldb.a
161 endif
162 ifneq (${USE_LEVELDB}, 1)
163 OBJS += obj/txdb-bdb.o
164 endif
165
166 test check: test_novacoin FORCE
167         ./test_novacoin
168
169 # auto-generated dependencies:
170 -include obj/*.P
171 -include obj-test/*.P
172
173 obj/build.h: FORCE
174         /bin/sh ../share/genbuild.sh obj/build.h
175 version.cpp: obj/build.h
176 DEFS += -DHAVE_BUILD_INFO
177
178 obj/scrypt-x86.o: scrypt-x86.S
179         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
180
181 obj/scrypt-x86_64.o: scrypt-x86_64.S
182         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
183
184 obj/%.o: %.cpp
185         $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
186         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
187           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
188               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
189           rm -f $(@:%.o=%.d)
190
191 obj/zerocoin/%.o: zerocoin/%.cpp
192         $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
193         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
194           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
195               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
196           rm -f $(@:%.o=%.d)
197
198 novacoind: $(OBJS:obj/%=obj/%)
199         $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS)
200
201 TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
202
203 obj-test/%.o: test/%.cpp
204         $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
205         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
206           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
207               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
208           rm -f $(@:%.o=%.d)
209
210 test_novacoin: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
211         $(LINK) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-B$(LMODE) -lboost_unit_test_framework $(xLDFLAGS) $(LIBS)
212
213 clean:
214         -rm -f novacoind test_novacoin
215         -rm -f obj/*.o
216         -rm -f obj/zerocoin/*.o
217         -rm -f obj-test/*.o
218         -rm -f obj/*.P
219         -rm -f obj/zerocoin/*.P
220         -rm -f obj-test/*.P
221         -rm -f obj/build.h
222
223 FORCE: