|
|
|
@ -23,7 +23,8 @@ BITCOIN_INCLUDES=-I$(builddir) -I$(builddir)/obj $(BITCOIN_CONFIG_INCLUDES) $(BO
|
|
|
|
|
noinst_LIBRARIES = \
|
|
|
|
|
libbitcoin_server.a \
|
|
|
|
|
libbitcoin_common.a \
|
|
|
|
|
libbitcoin_cli.a
|
|
|
|
|
libbitcoin_cli.a \
|
|
|
|
|
crypto/libbitcoin_crypto.a
|
|
|
|
|
if ENABLE_WALLET
|
|
|
|
|
BITCOIN_INCLUDES += $(BDB_CPPFLAGS)
|
|
|
|
|
noinst_LIBRARIES += libbitcoin_wallet.a
|
|
|
|
@ -76,10 +77,6 @@ BITCOIN_CORE_H = \
|
|
|
|
|
rpcserver.h \
|
|
|
|
|
script.h \
|
|
|
|
|
serialize.h \
|
|
|
|
|
crypto/common.h \
|
|
|
|
|
crypto/sha2.h \
|
|
|
|
|
crypto/sha1.h \
|
|
|
|
|
crypto/ripemd160.h \
|
|
|
|
|
sync.h \
|
|
|
|
|
threadsafety.h \
|
|
|
|
|
tinyformat.h \
|
|
|
|
@ -145,6 +142,16 @@ libbitcoin_wallet_a_SOURCES = \
|
|
|
|
|
walletdb.cpp \
|
|
|
|
|
$(BITCOIN_CORE_H)
|
|
|
|
|
|
|
|
|
|
crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES)
|
|
|
|
|
crypto_libbitcoin_crypto_a_SOURCES = \
|
|
|
|
|
crypto/sha1.cpp \
|
|
|
|
|
crypto/sha2.cpp \
|
|
|
|
|
crypto/ripemd160.cpp \
|
|
|
|
|
crypto/common.h \
|
|
|
|
|
crypto/sha2.h \
|
|
|
|
|
crypto/sha1.h \
|
|
|
|
|
crypto/ripemd160.h
|
|
|
|
|
|
|
|
|
|
libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES)
|
|
|
|
|
libbitcoin_common_a_SOURCES = \
|
|
|
|
|
base58.cpp \
|
|
|
|
@ -157,9 +164,6 @@ libbitcoin_common_a_SOURCES = \
|
|
|
|
|
protocol.cpp \
|
|
|
|
|
rpcprotocol.cpp \
|
|
|
|
|
script.cpp \
|
|
|
|
|
crypto/sha1.cpp \
|
|
|
|
|
crypto/sha2.cpp \
|
|
|
|
|
crypto/ripemd160.cpp \
|
|
|
|
|
sync.cpp \
|
|
|
|
|
util.cpp \
|
|
|
|
|
version.cpp \
|
|
|
|
@ -183,6 +187,7 @@ nodist_libbitcoin_common_a_SOURCES = $(srcdir)/obj/build.h
|
|
|
|
|
bitcoind_LDADD = \
|
|
|
|
|
libbitcoin_server.a \
|
|
|
|
|
libbitcoin_common.a \
|
|
|
|
|
crypto/libbitcoin_crypto.a \
|
|
|
|
|
$(LIBLEVELDB) \
|
|
|
|
|
$(LIBMEMENV)
|
|
|
|
|
if ENABLE_WALLET
|
|
|
|
@ -202,6 +207,7 @@ bitcoind_CPPFLAGS = $(BITCOIN_INCLUDES)
|
|
|
|
|
bitcoin_cli_LDADD = \
|
|
|
|
|
libbitcoin_cli.a \
|
|
|
|
|
libbitcoin_common.a \
|
|
|
|
|
crypto/libbitcoin_crypto.a \
|
|
|
|
|
$(BOOST_LIBS)
|
|
|
|
|
bitcoin_cli_SOURCES = bitcoin-cli.cpp
|
|
|
|
|
bitcoin_cli_CPPFLAGS = $(BITCOIN_INCLUDES)
|
|
|
|
@ -238,6 +244,7 @@ LIBBITCOIN_SERVER=libbitcoin_server.a
|
|
|
|
|
LIBBITCOIN_WALLET=libbitcoin_wallet.a
|
|
|
|
|
LIBBITCOIN_COMMON=libbitcoin_common.a
|
|
|
|
|
LIBBITCOIN_CLI=libbitcoin_cli.a
|
|
|
|
|
LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
|
|
|
|
|
LIBBITCOINQT=qt/libbitcoinqt.a
|
|
|
|
|
|
|
|
|
|
if ENABLE_TESTS
|
|
|
|
|