2014-06-05 21:24:48 +02:00
AM_CPPFLAGS = $( INCLUDES)
2014-06-04 23:13:03 +02:00
AM_LDFLAGS = $( PTHREAD_CFLAGS)
2013-09-09 04:02:28 +02:00
2013-05-28 01:55:01 +02:00
2014-06-04 23:13:03 +02:00
i f E M B E D D E D _ L E V E L D B
2014-06-05 20:22:54 +02:00
LEVELDB_CPPFLAGS += -I$( srcdir) /leveldb/include
LEVELDB_CPPFLAGS += -I$( srcdir) /leveldb/helpers/memenv
LIBLEVELDB += $( builddir) /leveldb/libleveldb.a
LIBMEMENV += $( builddir) /leveldb/libmemenv.a
2014-06-04 23:13:03 +02:00
# 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) "
e n d i f
2014-06-05 21:24:48 +02:00
BITCOIN_INCLUDES = -I$( builddir) -I$( builddir) /obj $( BOOST_CPPFLAGS) $( LEVELDB_CPPFLAGS)
2014-01-11 15:22:07 +01:00
noinst_LIBRARIES = \
libbitcoin_server.a \
libbitcoin_common.a \
libbitcoin_cli.a
2013-11-29 16:50:11 +01:00
i f E N A B L E _ W A L L E T
2014-06-05 21:24:48 +02:00
BITCOIN_INCLUDES += $( BDB_CPPFLAGS)
2013-11-29 16:50:11 +01:00
noinst_LIBRARIES += libbitcoin_wallet.a
e n d i f
2013-05-28 01:55:01 +02:00
2013-09-08 04:44:12 +02:00
bin_PROGRAMS =
2014-05-28 19:38:41 +02:00
TESTS =
2013-09-08 04:44:12 +02:00
i f B U I L D _ B I T C O I N D
bin_PROGRAMS += bitcoind
e n d i f
i f B U I L D _ B I T C O I N _ C L I
bin_PROGRAMS += bitcoin-cli
e n d i f
2013-05-28 01:55:01 +02:00
.PHONY : FORCE
# bitcoin core #
2014-01-11 15:22:07 +01:00
BITCOIN_CORE_H = \
addrman.h \
alert.h \
allocators.h \
2014-05-09 17:56:16 +02:00
base58.h \
2014-01-11 15:22:07 +01:00
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 \
2013-11-20 14:18:57 +01:00
rpcclient.h \
rpcprotocol.h \
rpcserver.h \
2014-01-11 15:22:07 +01:00
script.h \
serialize.h \
2014-04-28 12:20:15 +02:00
crypto/sha2.h \
crypto/sha1.h \
2014-05-01 00:43:31 +02:00
crypto/ripemd160.h \
2014-01-11 15:22:07 +01:00
sync.h \
threadsafety.h \
2014-01-16 15:52:37 +01:00
tinyformat.h \
2014-01-11 15:22:07 +01:00
txdb.h \
txmempool.h \
ui_interface.h \
uint256.h \
util.h \
version.h \
walletdb.h \
2014-06-14 01:19:35 +02:00
wallet.h \
compat/sanity.h
2014-01-11 15:22:07 +01:00
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 \
2013-05-28 01:55:01 +02:00
json/json_spirit_writer_template.h
obj/build.h : FORCE
2014-06-05 20:22:54 +02:00
@$( MKDIR_P) $( builddir) /obj
2013-05-28 01:55:01 +02:00
@$( top_srcdir) /share/genbuild.sh $( abs_top_builddir) /src/obj/build.h \
$( abs_top_srcdir)
2014-06-05 21:51:05 +02:00
libbitcoin_common_a-version.$(OBJEXT) : obj /build .h
2013-05-28 01:55:01 +02:00
2014-06-05 21:24:48 +02:00
libbitcoin_server_a_CPPFLAGS = $( BITCOIN_INCLUDES)
2013-11-29 16:50:11 +01:00
libbitcoin_server_a_SOURCES = \
addrman.cpp \
alert.cpp \
2013-11-20 14:18:57 +01:00
bloom.cpp \
2013-11-29 16:50:11 +01:00
checkpoints.cpp \
coins.cpp \
init.cpp \
keystore.cpp \
leveldbwrapper.cpp \
main.cpp \
2013-12-08 15:26:08 +01:00
miner.cpp \
2013-11-29 16:50:11 +01:00
net.cpp \
noui.cpp \
rpcblockchain.cpp \
2013-12-08 15:26:08 +01:00
rpcmining.cpp \
2013-12-13 16:01:22 +01:00
rpcmisc.cpp \
2013-11-29 16:50:11 +01:00
rpcnet.cpp \
rpcrawtransaction.cpp \
2014-03-25 11:34:28 +01:00
rpcserver.cpp \
2013-11-29 16:50:11 +01:00
txdb.cpp \
txmempool.cpp \
$( JSON_H) \
$( BITCOIN_CORE_H)
2014-06-05 21:24:48 +02:00
libbitcoin_wallet_a_CPPFLAGS = $( BITCOIN_INCLUDES)
2013-11-29 16:50:11 +01:00
libbitcoin_wallet_a_SOURCES = \
db.cpp \
2013-11-30 06:09:32 +01:00
crypter.cpp \
2013-11-29 16:50:11 +01:00
rpcdump.cpp \
rpcwallet.cpp \
wallet.cpp \
walletdb.cpp \
2013-11-27 15:41:12 +01:00
$( BITCOIN_CORE_H)
2014-06-05 21:24:48 +02:00
libbitcoin_common_a_CPPFLAGS = $( BITCOIN_INCLUDES)
2013-11-27 15:41:12 +01:00
libbitcoin_common_a_SOURCES = \
2014-04-12 23:34:00 +02:00
base58.cpp \
2013-11-27 15:41:12 +01:00
allocators.cpp \
chainparams.cpp \
core.cpp \
hash.cpp \
key.cpp \
netbase.cpp \
protocol.cpp \
rpcprotocol.cpp \
script.cpp \
2014-04-28 12:20:15 +02:00
crypto/sha1.cpp \
crypto/sha2.cpp \
2014-05-01 00:43:31 +02:00
crypto/ripemd160.cpp \
2013-11-27 15:41:12 +01:00
sync.cpp \
util.cpp \
version.cpp \
2014-06-14 01:19:35 +02:00
compat/glibc_sanity.cpp \
compat/glibcxx_sanity.cpp \
2013-05-28 01:55:01 +02:00
$( BITCOIN_CORE_H)
2014-03-28 00:58:41 +01:00
i f G L I B C _ B A C K _ C O M P A T
libbitcoin_common_a_SOURCES += compat/glibc_compat.cpp
libbitcoin_common_a_SOURCES += compat/glibcxx_compat.cpp
e n d i f
2013-11-27 15:41:12 +01:00
libbitcoin_cli_a_SOURCES = \
rpcclient.cpp \
$( BITCOIN_CORE_H)
2014-06-05 20:22:54 +02:00
nodist_libbitcoin_common_a_SOURCES = $( srcdir) /obj/build.h
2013-05-28 01:55:01 +02:00
#
# bitcoind binary #
2014-01-11 15:22:07 +01:00
bitcoind_LDADD = \
libbitcoin_server.a \
libbitcoin_common.a \
2013-11-12 21:09:55 +01:00
$( LIBLEVELDB) \
$( LIBMEMENV)
2013-11-29 16:50:11 +01:00
i f E N A B L E _ W A L L E T
bitcoind_LDADD += libbitcoin_wallet.a
e n d i f
2013-05-28 01:55:01 +02:00
bitcoind_SOURCES = bitcoind.cpp
#
2013-09-18 21:53:29 +02:00
i f T A R G E T _ W I N D O W S
2013-10-03 15:06:31 +02:00
bitcoind_SOURCES += bitcoind-res.rc
2013-09-18 21:53:29 +02:00
e n d i f
2014-01-07 09:09:31 +01:00
bitcoind_LDADD += $( BOOST_LIBS) $( BDB_LIBS)
2014-06-05 21:24:48 +02:00
bitcoind_CPPFLAGS = $( BITCOIN_INCLUDES)
2013-09-07 21:43:25 +02:00
2013-10-11 23:09:59 +02:00
# bitcoin-cli binary #
2014-01-11 15:22:07 +01:00
bitcoin_cli_LDADD = \
libbitcoin_cli.a \
libbitcoin_common.a \
$( BOOST_LIBS)
2013-10-11 23:09:59 +02:00
bitcoin_cli_SOURCES = bitcoin-cli.cpp
2014-06-05 21:24:48 +02:00
bitcoin_cli_CPPFLAGS = $( BITCOIN_INCLUDES)
2013-10-11 23:09:59 +02:00
#
i f T A R G E T _ W I N D O W S
bitcoin_cli_SOURCES += bitcoin-cli-res.rc
e n d i f
2013-05-28 01:55:01 +02:00
CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno
DISTCLEANFILES = obj/build.h
2014-05-28 19:38:41 +02:00
EXTRA_DIST = leveldb
2013-05-28 01:55:01 +02:00
clean-local :
-$( MAKE) -C leveldb clean
2013-11-28 03:17:17 +01:00
rm -f leveldb/*/*.gcno leveldb/helpers/memenv/*.gcno
2014-05-28 19:38:41 +02:00
2014-06-04 23:13:03 +02:00
.rc.o :
2014-06-05 20:17:50 +02:00
@test -f $( WINDRES)
$( AM_V_GEN) $( WINDRES) -i $< -o $@
2014-06-04 23:13:03 +02:00
.mm.o :
2014-06-05 20:17:50 +02:00
$( AM_V_CXX) $( OBJCXX) $( DEFS) $( DEFAULT_INCLUDES) $( INCLUDES) $( AM_CPPFLAGS) \
2014-06-04 23:13:03 +02:00
$( CPPFLAGS) $( AM_CXXFLAGS) $( QT_INCLUDES) $( CXXFLAGS) -c -o $@ $<
%.pb.cc %.pb.h : %.proto
2014-06-05 20:17:50 +02:00
@test -f $( PROTOC)
$( AM_V_GEN) $( PROTOC) --cpp_out= $( @D) --proto_path= $( abspath $( <D) $<)
2014-06-04 23:13:03 +02:00
LIBBITCOIN_SERVER = libbitcoin_server.a
LIBBITCOIN_WALLET = libbitcoin_wallet.a
LIBBITCOIN_COMMON = libbitcoin_common.a
LIBBITCOIN_CLI = libbitcoin_cli.a
LIBBITCOINQT = qt/libbitcoinqt.a
2014-05-28 19:38:41 +02:00
i f E N A B L E _ T E S T S
i n c l u d e M a k e f i l e . t e s t . i n c l u d e
e n d i f
i f E N A B L E _ Q T
i n c l u d e M a k e f i l e . q t . i n c l u d e
e n d i f
i f E N A B L E _ Q T _ T E S T S
i n c l u d e M a k e f i l e . q t t e s t . i n c l u d e
e n d i f