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