Remove unused includes.
[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 # CC=clang
9 # CXX=clang++
10
11 LINK:=$(CXX)
12 ARCH:=$(shell uname -m)
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))
17 LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
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
39 ifneq (${USE_IPV6}, -)
40         DEFS += -DUSE_IPV6=$(USE_IPV6)
41 endif
42
43 LIBS+= \
44  -Wl,-B$(LMODE2) \
45    -l z \
46    -l dl \
47    -l pthread
48
49
50 # Hardening
51 # Make some classes of vulnerabilities unexploitable in case one is discovered.
52 #
53     # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes
54     # -fstack-protector-all to be ignored unless -fno-stack-protector is used first.
55     # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722
56     HARDENING=-fno-stack-protector
57
58     # Stack Canaries
59     # Put numbers at the beginning of each stack frame and check that they are the same.
60     # If a stack buffer if overflowed, it writes over the canary number and then on return
61     # when that number is checked, it won't be the same and the program will exit with
62     # a "Stack smashing detected" error instead of being exploited.
63     HARDENING+=-fstack-protector-all -Wstack-protector
64
65     # Make some important things such as the global offset table read only as soon as
66     # the dynamic linker is finished building it. This will prevent overwriting of addresses
67     # which would later be jumped to.
68     LDHARDENING+=-Wl,-z,relro -Wl,-z,now
69
70     # Build position independent code to take advantage of Address Space Layout Randomization
71     # offered by some kernels.
72     # see doc/build-unix.txt for more information.
73     ifdef PIE
74         HARDENING+=-fPIE
75         LDHARDENING+=-pie
76     endif
77
78     # -D_FORTIFY_SOURCE=2 does some checking for potentially exploitable code patterns in
79     # the source such overflowing a statically defined buffer.
80     HARDENING+=-D_FORTIFY_SOURCE=2
81 #
82
83
84 DEBUGFLAGS=-g
85
86
87 ifeq (${ARCH}, i686)
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 -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/miner.o \
119     obj/main.o \
120     obj/net.o \
121     obj/ntp.o \
122     obj/stun.o \
123     obj/protocol.o \
124     obj/bitcoinrpc.o \
125     obj/rpccrypt.o \
126     obj/rpcdump.o \
127     obj/rpcnet.o \
128     obj/rpcmining.o \
129     obj/rpcwallet.o \
130     obj/rpcblockchain.o \
131     obj/rpcrawtransaction.o \
132     obj/script.o \
133     obj/sync.o \
134     obj/util.o \
135     obj/wallet.o \
136     obj/walletdb.o \
137     obj/noui.o \
138     obj/kernel.o \
139     obj/kernel_worker.o \
140     obj/ecies.o \
141     obj/cryptogram.o
142
143 all: novacoind
144
145 #
146 # LevelDB support
147 #
148 ifeq (${USE_LEVELDB}, 1)
149 LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
150 DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
151 DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
152 OBJS += obj/txdb-leveldb.o
153 leveldb/libleveldb.a:
154         @echo "Building LevelDB ..."; cd leveldb; CC=$(CC) CXX=$(CXX) make libleveldb.a libmemenv.a; cd ..;
155 obj/txdb-leveldb.o: leveldb/libleveldb.a
156 endif
157 ifneq (${USE_LEVELDB}, 1)
158 OBJS += obj/txdb-bdb.o
159 endif
160
161 ifeq (${USE_ASM}, 1)
162 # Assembler implementation
163 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
164
165 crypto/scrypt/asm/obj/scrypt-x86.o: crypto/scrypt/asm/scrypt-x86.S
166         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
167
168 crypto/scrypt/asm/obj/scrypt-x86_64.o: crypto/scrypt/asm/scrypt-x86_64.S
169         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
170
171 crypto/scrypt/asm/obj/scrypt-arm.o: crypto/scrypt/asm/scrypt-arm.S
172         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
173
174 crypto/scrypt/asm/obj/asm-wrapper.o: crypto/scrypt/asm/asm-wrapper.cpp
175         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
176
177 DEFS += -DUSE_ASM
178
179 else
180 ifeq  (${USE_SSE2}, 1)
181 # Intrinsic implementation
182 DEFS += -DUSE_SSE2
183 OBJS += crypto/scrypt/intrin/obj/scrypt-sse2.o
184
185 crypto/scrypt/intrin/obj/scrypt-sse2.o: crypto/scrypt/intrin/scrypt-sse2.cpp
186         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
187 else
188 # Generic implementation
189 OBJS += crypto/scrypt/generic/obj/scrypt-generic.o
190
191 crypto/scrypt/generic/obj/scrypt-generic.o: crypto/scrypt/generic/scrypt-generic.cpp
192         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
193 endif
194 endif
195
196
197 # auto-generated dependencies:
198 -include obj/*.P
199
200 obj/build.h: FORCE
201         /bin/sh ../share/genbuild.sh obj/build.h
202 version.cpp: obj/build.h
203 DEFS += -DHAVE_BUILD_INFO
204
205
206 obj/%.o: %.cpp
207         $(CXX) -c $(xCXXFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
208         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
209           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
210               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
211           rm -f $(@:%.o=%.d)
212
213 novacoind: $(OBJS:obj/%=obj/%)
214         $(LINK) $(xCXXFLAGS) -o $@ $^ $(xLDFLAGS) $(LIBS)
215
216 clean:
217         -rm -f novacoind
218         -rm -f obj/*.o
219         -rm -f obj/*.P
220         -rm -f obj/*.d
221         -rm -f crypto/scrypt/asm/obj/*.o
222         -rm -f crypto/scrypt/asm/obj/*.P
223         -rm -f crypto/scrypt/asm/obj/*.d
224         -rm -f crypto/scrypt/intrin/obj/*.o
225         -rm -f crypto/scrypt/intrin/obj/*.P
226         -rm -f crypto/scrypt/intrin/obj/*.d
227         -rm -f crypto/scrypt/generic/obj/*.o
228         -rm -f crypto/scrypt/generic/obj/*.P
229         -rm -f crypto/scrypt/generic/obj/*.d
230         -rm -f obj/build.h
231
232 FORCE: