Makefile.am 3.69 KB
Newer Older
1
include Makefile.include
2
3
4

AM_CPPFLAGS += -I$(top_srcdir)/src/leveldb/helpers/memenv \
  -I$(builddir)
5

6
7
8
9
noinst_LIBRARIES = \
  libbitcoin_server.a \
  libbitcoin_common.a \
  libbitcoin_cli.a
10
11
12
if ENABLE_WALLET
noinst_LIBRARIES += libbitcoin_wallet.a
endif
13

14
bin_PROGRAMS = bitcoind bitcoin-cli
15
16
17
18
19

SUBDIRS = . $(BUILD_QT) $(BUILD_TEST)
DIST_SUBDIRS = . qt test
.PHONY: FORCE
# bitcoin core #
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
BITCOIN_CORE_H = \
  addrman.h \
  alert.h \
  allocators.h \
  base58.h bignum.h \
  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 \
49
50
51
  rpcclient.h \
  rpcprotocol.h \
  rpcserver.h \
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  script.h \
  serialize.h \
  sync.h \
  threadsafety.h \
  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 \
74
75
76
77
78
79
80
81
  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

82
83
84
libbitcoin_server_a_SOURCES = \
  addrman.cpp \
  alert.cpp \
85
86
  rpcserver.cpp \
  bloom.cpp \
87
88
89
90
91
92
93
  chainparams.cpp \
  checkpoints.cpp \
  coins.cpp \
  init.cpp \
  keystore.cpp \
  leveldbwrapper.cpp \
  main.cpp \
94
  miner.cpp \
95
96
97
  net.cpp \
  noui.cpp \
  rpcblockchain.cpp \
98
  rpcmining.cpp \
99
  rpcmisc.cpp \
100
101
102
103
104
105
106
107
108
  rpcnet.cpp \
  rpcrawtransaction.cpp \
  txdb.cpp \
  txmempool.cpp \
  $(JSON_H) \
  $(BITCOIN_CORE_H)

libbitcoin_wallet_a_SOURCES = \
  db.cpp \
109
  crypter.cpp \
110
111
112
113
  rpcdump.cpp \
  rpcwallet.cpp \
  wallet.cpp \
  walletdb.cpp \
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  $(BITCOIN_CORE_H)

libbitcoin_common_a_SOURCES = \
  allocators.cpp \
  chainparams.cpp \
  core.cpp \
  hash.cpp \
  key.cpp \
  netbase.cpp \
  protocol.cpp \
  rpcprotocol.cpp \
  script.cpp \
  sync.cpp \
  util.cpp \
  version.cpp \
129
130
  $(BITCOIN_CORE_H)

131
132
133
134
135
libbitcoin_cli_a_SOURCES = \
  rpcclient.cpp \
  $(BITCOIN_CORE_H)

nodist_libbitcoin_common_a_SOURCES = $(top_srcdir)/src/obj/build.h
136
137
138
#

# bitcoind binary #
139
140
141
142
143
144
bitcoind_LDADD = \
  libbitcoin_server.a \
  libbitcoin_cli.a \
  libbitcoin_common.a \
  leveldb/libleveldb.a \
  leveldb/libmemenv.a
145
146
147
if ENABLE_WALLET
bitcoind_LDADD += libbitcoin_wallet.a
endif
148
149
150
bitcoind_SOURCES = bitcoind.cpp
#

151
if TARGET_WINDOWS
152
bitcoind_SOURCES += bitcoind-res.rc
153
154
endif

155
AM_CPPFLAGS += $(BDB_CPPFLAGS)
156
bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS)
157

158
# bitcoin-cli binary #
159
160
161
162
bitcoin_cli_LDADD = \
  libbitcoin_cli.a \
  libbitcoin_common.a \
  $(BOOST_LIBS)
163
164
165
166
167
168
169
bitcoin_cli_SOURCES = bitcoin-cli.cpp
#

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

170
leveldb/libleveldb.a: leveldb/libmemenv.a
171

172
173
174
175
leveldb/%.a:
	@echo "Building LevelDB ..." && $(MAKE) -C $(@D) $(@F) CXX="$(CXX)" \
	  CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \
	  OPT="$(CXXFLAGS) $(CPPFLAGS)"
176

177
qt/bitcoinstrings.cpp: $(libbitcoin_server_a_SOURCES) $(libbitcoin_common_a_SOURCES) $(libbitcoin_cli_a_SOURCES)
178
179
180
	@test -n $(XGETTEXT) || echo "xgettext is required for updating translations"
	@cd $(top_srcdir); XGETTEXT=$(XGETTEXT) share/qt/extract_strings_qt.py

181
182
183
184
185
186
187
188
CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno

DISTCLEANFILES = obj/build.h

EXTRA_DIST = leveldb Makefile.include

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