Makefile.am 4.75 KB
Newer Older
1
2
3
4
5
6
AM_CPPFLAGS =  $(INCLUDES) \
  -I$(top_builddir)/src/obj \
  $(BDB_CPPFLAGS) \
  $(BOOST_CPPFLAGS) $(BOOST_INCLUDES)
AM_CPPFLAGS += $(LEVELDB_CPPFLAGS)
AM_LDFLAGS = $(PTHREAD_CFLAGS)
7

8
AM_CPPFLAGS += -I$(builddir)
9

10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if EMBEDDED_LEVELDB
LEVELDB_CPPFLAGS += -I$(top_srcdir)/src/leveldb/include
LEVELDB_CPPFLAGS += -I$(top_srcdir)/src/leveldb/helpers/memenv
LIBLEVELDB += $(top_builddir)/src/leveldb/libleveldb.a
LIBMEMENV  += $(top_builddir)/src/leveldb/libmemenv.a

# NOTE: This dependency is not strictly necessary, but without it make may try to build both in parallel, which breaks the LevelDB build system in a race
$(LIBLEVELDB): $(LIBMEMENV)

$(LIBLEVELDB) $(LIBMEMENV):
	@echo "Building LevelDB ..." && $(MAKE) -C $(@D) $(@F) CXX="$(CXX)" \
	  CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \
          OPT="$(CXXFLAGS) $(CPPFLAGS)"
endif

25
26
27
28
noinst_LIBRARIES = \
  libbitcoin_server.a \
  libbitcoin_common.a \
  libbitcoin_cli.a
29
30
31
if ENABLE_WALLET
noinst_LIBRARIES += libbitcoin_wallet.a
endif
32

33
bin_PROGRAMS =
34
TESTS =
35
36
37
38
39
40
41
42

if BUILD_BITCOIND
  bin_PROGRAMS += bitcoind
endif

if BUILD_BITCOIN_CLI
  bin_PROGRAMS += bitcoin-cli
endif
43
44
45

.PHONY: FORCE
# bitcoin core #
46
47
48
49
BITCOIN_CORE_H = \
  addrman.h \
  alert.h \
  allocators.h \
Pieter Wuille's avatar
Pieter Wuille committed
50
  base58.h \
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  bloom.h \
  chainparams.h \
  checkpoints.h \
  checkqueue.h \
  clientversion.h \
  coincontrol.h \
  coins.h \
  compat.h \
  core.h \
  crypter.h \
  db.h \
  hash.h \
  init.h \
  key.h \
  keystore.h \
  leveldbwrapper.h \
  limitedmap.h \
  main.h \
  miner.h \
  mruset.h \
  netbase.h \
  net.h \
  noui.h \
  protocol.h \
75
76
77
  rpcclient.h \
  rpcprotocol.h \
  rpcserver.h \
78
79
80
81
  script.h \
  serialize.h \
  sync.h \
  threadsafety.h \
82
  tinyformat.h \
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  txdb.h \
  txmempool.h \
  ui_interface.h \
  uint256.h \
  util.h \
  version.h \
  walletdb.h \
  wallet.h

JSON_H = \
  json/json_spirit.h \
  json/json_spirit_error_position.h \
  json/json_spirit_reader.h \
  json/json_spirit_reader_template.h \
  json/json_spirit_stream_reader.h \
  json/json_spirit_utils.h \
  json/json_spirit_value.h \
  json/json_spirit_writer.h \
101
102
103
104
105
106
107
108
  json/json_spirit_writer_template.h

obj/build.h: FORCE
	@$(MKDIR_P) $(abs_top_builddir)/src/obj
	@$(top_srcdir)/share/genbuild.sh $(abs_top_builddir)/src/obj/build.h \
	  $(abs_top_srcdir)
version.o: obj/build.h

109
110
111
libbitcoin_server_a_SOURCES = \
  addrman.cpp \
  alert.cpp \
112
  bloom.cpp \
113
114
115
116
117
118
  checkpoints.cpp \
  coins.cpp \
  init.cpp \
  keystore.cpp \
  leveldbwrapper.cpp \
  main.cpp \
119
  miner.cpp \
120
121
122
  net.cpp \
  noui.cpp \
  rpcblockchain.cpp \
123
  rpcmining.cpp \
124
  rpcmisc.cpp \
125
126
  rpcnet.cpp \
  rpcrawtransaction.cpp \
127
  rpcserver.cpp \
128
129
130
131
132
133
134
  txdb.cpp \
  txmempool.cpp \
  $(JSON_H) \
  $(BITCOIN_CORE_H)

libbitcoin_wallet_a_SOURCES = \
  db.cpp \
135
  crypter.cpp \
136
137
138
139
  rpcdump.cpp \
  rpcwallet.cpp \
  wallet.cpp \
  walletdb.cpp \
140
141
142
  $(BITCOIN_CORE_H)

libbitcoin_common_a_SOURCES = \
143
  base58.cpp \
144
145
146
147
148
149
150
151
152
153
154
155
  allocators.cpp \
  chainparams.cpp \
  core.cpp \
  hash.cpp \
  key.cpp \
  netbase.cpp \
  protocol.cpp \
  rpcprotocol.cpp \
  script.cpp \
  sync.cpp \
  util.cpp \
  version.cpp \
156
157
  $(BITCOIN_CORE_H)

158
159
160
161
162
if GLIBC_BACK_COMPAT
libbitcoin_common_a_SOURCES += compat/glibc_compat.cpp
libbitcoin_common_a_SOURCES += compat/glibcxx_compat.cpp
endif

163
164
165
166
167
libbitcoin_cli_a_SOURCES = \
  rpcclient.cpp \
  $(BITCOIN_CORE_H)

nodist_libbitcoin_common_a_SOURCES = $(top_srcdir)/src/obj/build.h
168
169
170
#

# bitcoind binary #
171
172
173
174
bitcoind_LDADD = \
  libbitcoin_server.a \
  libbitcoin_cli.a \
  libbitcoin_common.a \
175
176
  $(LIBLEVELDB) \
  $(LIBMEMENV)
177
178
179
if ENABLE_WALLET
bitcoind_LDADD += libbitcoin_wallet.a
endif
180
181
182
bitcoind_SOURCES = bitcoind.cpp
#

183
if TARGET_WINDOWS
184
bitcoind_SOURCES += bitcoind-res.rc
185
186
endif

187
AM_CPPFLAGS += $(BDB_CPPFLAGS)
188
bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS)
189

190
# bitcoin-cli binary #
191
192
193
194
bitcoin_cli_LDADD = \
  libbitcoin_cli.a \
  libbitcoin_common.a \
  $(BOOST_LIBS)
195
196
197
198
199
200
201
bitcoin_cli_SOURCES = bitcoin-cli.cpp
#

if TARGET_WINDOWS
bitcoin_cli_SOURCES += bitcoin-cli-res.rc
endif

202
203
204
205
CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno

DISTCLEANFILES = obj/build.h

206
EXTRA_DIST = leveldb
207
208
209

clean-local:
	-$(MAKE) -C leveldb clean
210
	rm -f leveldb/*/*.gcno leveldb/helpers/memenv/*.gcno
211

212
.rc.o:
213
214
	@test -f $(WINDRES)
	$(AM_V_GEN) $(WINDRES) -i $< -o $@
215
216

.mm.o:
217
	$(AM_V_CXX) $(OBJCXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
218
219
220
	  $(CPPFLAGS) $(AM_CXXFLAGS) $(QT_INCLUDES) $(CXXFLAGS)  -c -o $@ $<

%.pb.cc %.pb.h: %.proto
221
222
	@test -f $(PROTOC)
	$(AM_V_GEN) $(PROTOC) --cpp_out=$(@D) --proto_path=$(abspath $(<D) $<)
223
224
225
226
227
228
229

LIBBITCOIN_SERVER=libbitcoin_server.a
LIBBITCOIN_WALLET=libbitcoin_wallet.a
LIBBITCOIN_COMMON=libbitcoin_common.a
LIBBITCOIN_CLI=libbitcoin_cli.a
LIBBITCOINQT=qt/libbitcoinqt.a

230
231
232
233
234
235
236
237
238
239
240
if ENABLE_TESTS
include Makefile.test.include
endif

if ENABLE_QT
include Makefile.qt.include
endif

if ENABLE_QT_TESTS
include Makefile.qttest.include
endif