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