0903d6e8f1183ee178307029a37431fe3b7676fd
[novacoin.git] / src / makefile.osx
1 # -*- mode: Makefile; -*-
2 # Copyright (c) 2011 Bitcoin Developers
3 # Distributed under the MIT/X11 software license, see the accompanying
4 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 # Mac OS X makefile for bitcoin
7 # Originally by Laszlo Hanyecz (solar@heliacal.net)
8
9 CXX=llvm-g++
10 DEPSDIR=/opt/local
11
12 INCLUDEPATHS= \
13  -I"$(CURDIR)" \
14  -I"$(CURDIR)"/obj \
15  -I"$(DEPSDIR)/include" \
16  -I"$(DEPSDIR)/include/db48"
17
18 LIBPATHS= \
19  -L"$(DEPSDIR)/lib" \
20  -L"$(DEPSDIR)/lib/db48"
21
22 USE_LEVELDB:=0
23 USE_IPV6:=1
24
25 LIBS= -dead_strip
26
27 ifdef STATIC
28 # Build STATIC if you are redistributing the bitcoind binary
29 LIBS += \
30  $(DEPSDIR)/lib/db48/libdb_cxx-4.8.a \
31  $(DEPSDIR)/lib/libboost_system-mt.a \
32  $(DEPSDIR)/lib/libboost_filesystem-mt.a \
33  $(DEPSDIR)/lib/libboost_program_options-mt.a \
34  $(DEPSDIR)/lib/libboost_thread-mt.a \
35  $(DEPSDIR)/lib/libssl.a \
36  $(DEPSDIR)/lib/libcrypto.a \
37  -lz
38 else
39 LIBS += \
40  -ldb_cxx-4.8 \
41  -lboost_system-mt \
42  -lboost_filesystem-mt \
43  -lboost_program_options-mt \
44  -lboost_thread-mt \
45  -lssl \
46  -lcrypto \
47  -lz
48 endif
49
50 DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
51
52 ifdef RELEASE
53 # Compile for maximum compatibility and smallest size.
54 # This requires that dependencies are compiled
55 # the same way.
56 CFLAGS = -O2 -msse2 -mssse3
57 else
58 CFLAGS = -g -msse2 -mssse3
59 endif
60
61 # ppc doesn't work because we don't support big-endian
62 CFLAGS += -Wall -Wextra -Wformat -Wno-ignored-qualifiers -Wformat-security -Wno-unused-parameter \
63     $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
64
65 OBJS= \
66     obj/alert.o \
67     obj/version.o \
68     obj/checkpoints.o \
69     obj/netbase.o \
70     obj/addrman.o \
71     obj/crypter.o \
72     obj/key.o \
73     obj/db.o \
74     obj/init.o \
75     obj/irc.o \
76     obj/keystore.o \
77     obj/main.o \
78     obj/miner.o \
79     obj/net.o \
80     obj/ntp.o \
81     obj/stun.o \
82     obj/protocol.o \
83     obj/bitcoinrpc.o \
84     obj/rpcdump.o \
85     obj/rpcnet.o \
86     obj/rpcmining.o \
87     obj/rpcwallet.o \
88     obj/rpcblockchain.o \
89     obj/rpcrawtransaction.o \
90     obj/script.o \
91     obj/sync.o \
92     obj/util.o \
93     obj/wallet.o \
94     obj/walletdb.o \
95     obj/noui.o \
96     obj/kernel.o
97
98 ifneq (${USE_IPV6}, -)
99         DEFS += -DUSE_IPV6=$(USE_IPV6)
100 endif
101
102 all: novacoind
103
104 #
105 # LevelDB support
106 #
107 ifdef USE_LEVELDB
108 LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
109 DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
110 DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
111 OBJS += obj/txdb-leveldb.o
112 leveldb/libleveldb.a:
113         @echo "Building LevelDB ..."; cd leveldb; make; cd ..
114 obj/txdb-leveldb.o: leveldb/libleveldb.a
115 else
116 OBJS += obj/txdb-bdb.o
117 endif
118
119 ifeq (${USE_ASM}, 1)
120 # Assembler implementation
121 OBJS += crypto/scrypt/asm/obj/scrypt-x86.o crypto/scrypt/asm/obj/scrypt-x86_64.o crypto/scrypt/asm/obj/asm-wrapper.o
122 OBJS += crypto/sha2/asm/obj/sha2-x86.o crypto/sha2/asm/obj/sha2-x86_64.o
123
124 crypto/scrypt/asm/obj/scrypt-x86.o: crypto/scrypt/asm/scrypt-x86.S
125         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
126
127 crypto/scrypt/asm/obj/scrypt-x86_64.o: crypto/scrypt/asm/scrypt-x86_64.S
128         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
129
130 crypto/scrypt/asm/obj/asm-wrapper.o: crypto/scrypt/asm/asm-wrapper.cpp
131         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
132
133 crypto/sha2/asm/obj/sha2-x86.o: crypto/sha2/asm/sha2-x86.S
134         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
135
136 crypto/sha2/asm/obj/sha2-x86_64.o: crypto/sha2/asm/sha2-x86_64.S
137         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
138
139 DEFS += -DUSE_ASM
140
141 else
142 ifeq  (${USE_SSE2}, 1)
143 # Intrinsic implementation
144 DEFS += -DUSE_SSE2
145 OBJS += crypto/scrypt/intrin/obj/scrypt-sse2.o
146
147 crypto/scrypt/intrin/obj/scrypt-sse2.o: crypto/scrypt/intrin/scrypt-sse2.cpp
148         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
149 else
150 # Generic implementation
151 OBJS += crypto/scrypt/generic/obj/scrypt-generic.o
152
153 crypto/scrypt/generic/obj/scrypt-generic.o: crypto/scrypt/generic/scrypt-generic.cpp
154         $(CXX) -c $(CFLAGS) -MMD -o $@ $<
155 endif
156 endif
157
158
159 # auto-generated dependencies:
160 -include obj/*.P
161
162 obj/build.h: FORCE
163         /bin/sh ../share/genbuild.sh obj/build.h
164 version.cpp: obj/build.h
165 DEFS += -DHAVE_BUILD_INFO
166
167 obj/%.o: %.cpp
168         $(CXX) -c $(CFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
169         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
170           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
171               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
172           rm -f $(@:%.o=%.d)
173
174 novacoind: $(OBJS:obj/%=obj/%)
175         $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
176
177 clean:
178         -rm -f novacoind
179         -rm -f obj/*.o
180         -rm -f obj/*.P
181         -rm -f obj/*.d
182         -rm -f crypto/scrypt/asm/obj/*.o
183         -rm -f crypto/scrypt/asm/obj/*.P
184         -rm -f crypto/scrypt/asm/obj/*.d
185         -rm -f crypto/scrypt/intrin/obj/*.o
186         -rm -f crypto/scrypt/intrin/obj/*.P
187         -rm -f crypto/scrypt/intrin/obj/*.d
188         -rm -f crypto/scrypt/generic/obj/*.o
189         -rm -f crypto/scrypt/generic/obj/*.P
190         -rm -f crypto/scrypt/generic/obj/*.d
191         -rm -f crypto/sha2/asm/obj/*.o
192         -rm -f crypto/sha2/asm/obj/*.P
193         -rm -f crypto/sha2/asm/obj/*.d
194         -rm -f obj/build.h
195
196 FORCE: