add validatepubkey RPC call
[novacoin.git] / src / makefile.bsd
1 # Copyright (c) 2009-2010 Satoshi Nakamoto
2 # Copyright (c) 2011-2012 The PPCoin developers
3 # Distributed under the MIT/X11 software license, see the accompanying
4 # file license.txt or http://www.opensource.org/licenses/mit-license.php.
5
6 USE_UPNP:=-
7
8 DEFS=-DBOOST_SPIRIT_THREADSAFE
9 BOOST_INCLUDE_PATH=/usr/local/include
10 BDB_INCLUDE_PATH=/usr/local/include/db48
11 BOOST_LIB_PATH=/usr/local/lib
12 BDB_LIB_PATH=/usr/local/lib/db48
13
14 DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
15 LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
16
17 TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
18
19 LMODE = dynamic
20 LMODE2 = dynamic
21 ifdef STATIC
22         LMODE = static
23         ifeq (${STATIC}, all)
24                 LMODE2 = static
25         endif
26 else
27         TESTDEFS += -DBOOST_TEST_DYN_LINK
28 endif
29
30 # for boost 1.37, add -mt to the boost libraries
31 LIBS += \
32  -Wl,-B$(LMODE) \
33    -l boost_system$(BOOST_LIB_SUFFIX) \
34    -l boost_filesystem$(BOOST_LIB_SUFFIX) \
35    -l boost_program_options$(BOOST_LIB_SUFFIX) \
36    -l boost_thread$(BOOST_LIB_SUFFIX) \
37    -l db_cxx$(BDB_LIB_SUFFIX) \
38    -l ssl \
39    -l crypto
40
41 ifndef USE_UPNP
42         override USE_UPNP = -
43 endif
44 ifneq (${USE_UPNP}, -)
45         LIBS += -l miniupnpc
46         DEFS += -DUSE_UPNP=$(USE_UPNP)
47 endif
48
49 LIBS+= \
50  -Wl,-B$(LMODE2) \
51    -l z \
52    -l pthread
53
54
55 # Hardening
56 # Make some classes of vulnerabilities unexploitable in case one is discovered.
57 #
58     # This is a workaround for Ubuntu bug #691722, the default -fstack-protector causes
59     # -fstack-protector-all to be ignored unless -fno-stack-protector is used first.
60     # see: https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722
61     HARDENING=-fno-stack-protector
62
63     # Stack Canaries
64     # Put numbers at the beginning of each stack frame and check that they are the same.
65     # If a stack buffer if overflowed, it writes over the canary number and then on return
66     # when that number is checked, it won't be the same and the program will exit with
67     # a "Stack smashing detected" error instead of being exploited.
68     HARDENING+=-fstack-protector-all -Wstack-protector
69
70     # Make some important things such as the global offset table read only as soon as
71     # the dynamic linker is finished building it. This will prevent overwriting of addresses
72     # which would later be jumped to.
73     HARDENING+=-Wl,-z,relro -Wl,-z,now
74
75     # Build position independent code to take advantage of Address Space Layout Randomization
76     # offered by some kernels.
77     # see doc/build-unix.txt for more information.
78     ifdef PIE
79         HARDENING+=-fPIE -pie
80     endif
81
82     # -D_FORTIFY_SOURCE=2 does some checking for potentially exploitable code patterns in
83     # the source such overflowing a statically defined buffer.
84     HARDENING+=-D_FORTIFY_SOURCE=2
85 #
86
87
88 DEBUGFLAGS=-g
89 CXXFLAGS=-O2 -msse2
90 xCXXFLAGS=-pthread -Wall -Wextra -Wno-sign-compare -Wno-invalid-offsetof -Wno-unused-parameter -Wformat -Wformat-security \
91     $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS)
92
93 OBJS= \
94     obj/version.o \
95     obj/checkpoints.o \
96     obj/netbase.o \
97     obj/addrman.o \
98     obj/crypter.o \
99     obj/key.o \
100     obj/db.o \
101     obj/init.o \
102     obj/irc.o \
103     obj/keystore.o \
104     obj/main.o \
105     obj/net.o \
106     obj/protocol.o \
107     obj/bitcoinrpc.o \
108     obj/rpcdump.o \
109     obj/script.o \
110     obj/util.o \
111     obj/wallet.o \
112     obj/walletdb.o \
113     obj/noui.o \
114     obj/kernel.o \
115     obj/pbkdf2.o \
116     obj/scrypt_mine.o \
117     obj/scrypt-x86.o \
118     obj/scrypt-x86_64.o
119
120 all: novacoind
121
122 # auto-generated dependencies:
123 -include obj/*.P
124 -include obj-test/*.P
125
126 obj/build.h: FORCE
127         /bin/sh ../share/genbuild.sh obj/build.h
128 version.cpp: obj/build.h
129 DEFS += -DHAVE_BUILD_INFO
130
131 obj/%.o: %.cpp
132         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
133         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
134           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
135               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
136           rm -f $(@:%.o=%.d)
137
138 obj/scrypt-x86.o: scrypt-x86.S
139         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
140
141 obj/scrypt-x86_64.o: scrypt-x86_64.S
142         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
143
144 novacoind: $(OBJS:obj/%=obj/%)
145         $(CXX) $(xCXXFLAGS) -rdynamic -o $@ $^ $(LDFLAGS) $(LIBS)
146
147 TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
148
149 obj-test/%.o: test/%.cpp
150         $(CXX) -c $(TESTDEFS) $(xCXXFLAGS) -MMD -o $@ $<
151         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
152           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
153               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
154           rm -f $(@:%.o=%.d)
155
156 test_novacoin: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
157         $(CXX) $(xCXXFLAGS) -o $@ $(LIBPATHS) $^ -Wl,-B$(LMODE) -lboost_unit_test_framework $(LDFLAGS) $(LIBS)
158
159 clean:
160         -rm -f novacoind test_novacoin
161         -rm -f obj/*.o
162         -rm -f obj-test/*.o
163         -rm -f obj/*.P
164         -rm -f obj-test/*.P
165         -rm -f src/build.h
166
167 FORCE: