Reorganize scrypt function implementations.
[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_UPNP:=0
23 USE_LEVELDB:=0
24 USE_IPV6:=1
25
26 LIBS= -dead_strip
27
28 ifdef STATIC
29 # Build STATIC if you are redistributing the bitcoind binary
30 LIBS += \
31  $(DEPSDIR)/lib/db48/libdb_cxx-4.8.a \
32  $(DEPSDIR)/lib/libboost_system-mt.a \
33  $(DEPSDIR)/lib/libboost_filesystem-mt.a \
34  $(DEPSDIR)/lib/libboost_program_options-mt.a \
35  $(DEPSDIR)/lib/libboost_thread-mt.a \
36  $(DEPSDIR)/lib/libssl.a \
37  $(DEPSDIR)/lib/libcrypto.a \
38  -lz
39 else
40 LIBS += \
41  -ldb_cxx-4.8 \
42  -lboost_system-mt \
43  -lboost_filesystem-mt \
44  -lboost_program_options-mt \
45  -lboost_thread-mt \
46  -lssl \
47  -lcrypto \
48  -lz
49 endif
50
51 DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 -DBOOST_SPIRIT_THREADSAFE -D__STDC_FORMAT_MACROS
52
53 ifdef RELEASE
54 # Compile for maximum compatibility and smallest size.
55 # This requires that dependencies are compiled
56 # the same way.
57 CFLAGS = -O2 -msse2
58 else
59 CFLAGS = -g -msse2
60 endif
61
62 # ppc doesn't work because we don't support big-endian
63 CFLAGS += -Wall -Wextra -Wformat -Wno-ignored-qualifiers -Wformat-security -Wno-unused-parameter \
64     $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
65
66 OBJS= \
67     obj/alert.o \
68     obj/version.o \
69     obj/checkpoints.o \
70     obj/netbase.o \
71     obj/addrman.o \
72     obj/crypter.o \
73     obj/key.o \
74     obj/db.o \
75     obj/init.o \
76     obj/irc.o \
77     obj/keystore.o \
78     obj/main.o \
79     obj/miner.o \
80     obj/net.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 ifndef USE_UPNP
99         override USE_UPNP = -
100 endif
101 ifneq (${USE_UPNP}, -)
102         DEFS += -DUSE_UPNP=$(USE_UPNP)
103 ifdef STATIC
104         LIBS += $(DEPSDIR)/lib/libminiupnpc.a
105 else
106         LIBS += -lminiupnpc
107 endif
108 endif
109
110 ifneq (${USE_IPV6}, -)
111         DEFS += -DUSE_IPV6=$(USE_IPV6)
112 endif
113
114 all: novacoind
115
116 #
117 # LevelDB support
118 #
119 ifdef USE_LEVELDB
120 LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
121 DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
122 DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
123 OBJS += obj/txdb-leveldb.o
124 leveldb/libleveldb.a:
125         @echo "Building LevelDB ..."; cd leveldb; make; cd ..
126 obj/txdb-leveldb.o: leveldb/libleveldb.a
127 else
128 OBJS += obj/txdb-bdb.o
129 endif
130
131 ifeq (${USE_ASM}, 1)
132 # Assembler implementation
133 OBJS += scrypt-asm/obj/scrypt-arm.o scrypt-asm/obj/scrypt-x86.o scrypt-asm/obj/scrypt-x86_64.o scrypt-asm/obj/asm-wrapper.o
134
135 scrypt-asm/obj/scrypt-x86.o: scrypt-asm/scrypt-x86.S
136         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
137
138 scrypt-asm/obj/scrypt-x86_64.o: scrypt-asm/scrypt-x86_64.S
139         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
140
141 scrypt-asm/obj/scrypt-arm.o: scrypt-asm/scrypt-arm.S
142         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
143
144 scrypt-asm/obj/asm-wrapper.o: scrypt-asm/asm-wrapper.cpp
145         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
146 else
147 ifeq  (${USE_SSE2}, 1)
148 # Intrinsic implementation
149 DEFS += -DUSE_SSE2
150 OBJS += scrypt-intrin/obj/scrypt-sse2.o
151
152 scrypt-intrin/obj/scrypt-sse2.o: scrypt-intrin/scrypt-sse2.cpp
153         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
154 else
155 ifneq (${USE_ASM}, 1)
156 # Generic implementation
157 OBJS += obj/scrypt-generic.o
158
159 obj/scrypt-generic.o: scrypt-generic.cpp
160         $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<
161 endif
162 endif
163 endif
164
165
166 # auto-generated dependencies:
167 -include obj/*.P
168
169 obj/build.h: FORCE
170         /bin/sh ../share/genbuild.sh obj/build.h
171 version.cpp: obj/build.h
172 DEFS += -DHAVE_BUILD_INFO
173
174 obj/%.o: %.cpp
175         $(CXX) -c $(CFLAGS) -MMD -MF $(@:%.o=%.d) -o $@ $<
176         @cp $(@:%.o=%.d) $(@:%.o=%.P); \
177           sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
178               -e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
179           rm -f $(@:%.o=%.d)
180
181 novacoind: $(OBJS:obj/%=obj/%)
182         $(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
183
184 clean:
185         -rm -f novacoind
186         -rm -f obj/*.o
187         -rm -f obj/*.P
188         -rm -f obj/*.d
189         -rm -f scrypt-asm/obj/*.o
190         -rm -f scrypt-asm/obj/*.P
191         -rm -f scrypt-asm/obj/*.d
192         -rm -f scrypt-intrin/obj/*.o
193         -rm -f scrypt-intrin/obj/*.P
194         -rm -f scrypt-intrin/obj/*.d
195         -rm -f obj/build.h
196
197 FORCE: