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