2013-09-18 21:53:29 +02:00
i n c l u d e M a k e f i l e . i n c l u d e
2013-09-09 04:02:28 +02:00
2013-11-12 21:09:55 +01:00
AM_CPPFLAGS += -I$( builddir)
2013-05-28 01:55:01 +02:00
2014-01-11 15:22:07 +01:00
noinst_LIBRARIES = \
2014-12-09 02:17:57 +01:00
libdarkcoin_server.a \
libdarkcoin_common.a \
libdarkcoin_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-12-09 02:17:57 +01:00
noinst_LIBRARIES += libdarkcoin_wallet.a
2013-11-29 16:50:11 +01:00
e n d i f
2013-05-28 01:55:01 +02:00
2013-09-08 04:44:12 +02:00
bin_PROGRAMS =
i f B U I L D _ B I T C O I N D
2014-12-09 02:17:57 +01:00
bin_PROGRAMS += darkcoind
2013-09-08 04:44:12 +02:00
e n d i f
i f B U I L D _ B I T C O I N _ C L I
2014-12-09 02:17:57 +01:00
bin_PROGRAMS += darkcoin-cli
2013-09-08 04:44:12 +02:00
e n d i f
2013-05-28 01:55:01 +02:00
SUBDIRS = . $( BUILD_QT) $( BUILD_TEST)
DIST_SUBDIRS = . qt test
.PHONY : FORCE
2014-12-09 02:17:57 +01:00
# darkcoin core #
2014-01-11 15:22:07 +01:00
BITCOIN_CORE_H = \
2014-12-09 02:17:57 +01:00
activemasternode.h \
2014-01-11 15:22:07 +01:00
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 \
2014-12-09 02:17:57 +01:00
darksend.h \
2014-01-11 15:22:07 +01:00
db.h \
hash.h \
init.h \
2014-12-09 02:17:57 +01:00
instantx.h \
2014-01-11 15:22:07 +01:00
key.h \
2014-12-26 12:53:29 +01:00
keepass.h \
2014-01-11 15:22:07 +01:00
keystore.h \
leveldbwrapper.h \
limitedmap.h \
main.h \
2014-12-09 02:17:57 +01:00
masternode.h \
2014-12-06 20:41:53 +01:00
masternodeconfig.h \
2014-01-11 15:22:07 +01:00
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-11-29 11:07:09 +01:00
sph_blake.h \
sph_bmw.h \
sph_cubehash.h \
sph_echo.h \
sph_groestl.h \
sph_jh.h \
sph_keccak.h \
sph_luffa.h \
sph_shavite.h \
sph_simd.h \
sph_skein.h \
sph_types.h \
2015-02-09 20:28:29 +01:00
spork.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 \
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 \
2013-05-28 01:55:01 +02:00
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
2014-12-09 02:17:57 +01:00
libdarkcoin_server_a_SOURCES = \
activemasternode.cpp \
2013-11-29 16:50:11 +01:00
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 \
2014-12-09 02:17:57 +01:00
rpcdarksend.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-12-09 02:17:57 +01:00
libdarkcoin_wallet_a_SOURCES = \
activemasternode.cpp \
2013-11-29 16:50:11 +01:00
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 \
2014-12-26 12:53:29 +01:00
keepass.cpp \
2013-11-27 15:41:12 +01:00
$( BITCOIN_CORE_H)
2014-12-09 02:17:57 +01:00
libdarkcoin_common_a_SOURCES = \
activemasternode.cpp \
2014-04-12 23:34:00 +02:00
base58.cpp \
2013-11-27 15:41:12 +01:00
allocators.cpp \
chainparams.cpp \
core.cpp \
2014-12-09 02:17:57 +01:00
darksend.cpp \
masternode.cpp \
2014-12-26 12:53:29 +01:00
masternodeconfig.cpp \
2014-12-09 02:17:57 +01:00
instantx.cpp \
2013-11-27 15:41:12 +01:00
hash.cpp \
key.cpp \
netbase.cpp \
protocol.cpp \
rpcprotocol.cpp \
script.cpp \
sync.cpp \
util.cpp \
version.cpp \
2014-11-29 11:07:09 +01:00
aes_helper.c \
luffa.c \
groestl.c \
jh.c \
echo.c \
shavite.c \
keccak.c \
skein.c \
2015-02-09 20:28:29 +01:00
spork.cpp \
2014-11-29 11:07:09 +01:00
bmw.c \
simd.c \
cubehash.c \
blake.c \
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
2014-12-09 02:17:57 +01:00
libdarkcoin_common_a_SOURCES += compat/glibc_compat.cpp
libdarkcoin_common_a_SOURCES += compat/glibcxx_compat.cpp
2014-03-28 00:58:41 +01:00
e n d i f
2014-12-09 02:17:57 +01:00
libdarkcoin_cli_a_SOURCES = \
2013-11-27 15:41:12 +01:00
rpcclient.cpp \
$( BITCOIN_CORE_H)
2014-12-09 02:17:57 +01:00
nodist_libdarkcoin_common_a_SOURCES = $( top_srcdir) /src/obj/build.h
2013-05-28 01:55:01 +02:00
#
2014-12-09 02:17:57 +01:00
# darkcoind binary #
darkcoind_LDADD = \
libdarkcoin_server.a \
libdarkcoin_cli.a \
libdarkcoin_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
2014-12-09 02:17:57 +01:00
darkcoind_LDADD += libdarkcoin_wallet.a
2013-11-29 16:50:11 +01:00
e n d i f
2014-12-09 02:17:57 +01:00
darkcoind_SOURCES = darkcoind.cpp
2013-05-28 01:55:01 +02:00
#
2013-09-18 21:53:29 +02:00
i f T A R G E T _ W I N D O W S
2015-02-19 19:58:38 +01:00
darkcoind_SOURCES += darkcoind-res.rc
2013-09-18 21:53:29 +02:00
e n d i f
2013-09-07 21:43:25 +02:00
AM_CPPFLAGS += $( BDB_CPPFLAGS)
2014-12-09 02:17:57 +01:00
darkcoind_LDADD += $( BOOST_LIBS) $( BDB_LIBS)
2013-09-07 21:43:25 +02:00
2014-12-09 02:17:57 +01:00
# darkcoin-cli binary #
darkcoin_cli_LDADD = \
libdarkcoin_cli.a \
libdarkcoin_common.a \
2014-01-11 15:22:07 +01:00
$( BOOST_LIBS)
2014-12-09 02:17:57 +01:00
darkcoin_cli_SOURCES = darkcoin-cli.cpp
2013-10-11 23:09:59 +02:00
#
i f T A R G E T _ W I N D O W S
2015-02-19 19:58:38 +01:00
darkcoin_cli_SOURCES += darkcoin-cli-res.rc
2013-10-11 23:09:59 +02:00
e n d i f
2013-11-12 21:09:55 +01: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
2013-09-16 07:22:50 +02:00
leveldb/libleveldb.a : leveldb /libmemenv .a
2013-05-28 01:55:01 +02:00
2013-09-16 07:22:50 +02:00
leveldb/%.a :
@echo "Building LevelDB ..." && $( MAKE) -C $( @D) $( @F) CXX = " $( CXX) " \
CC = " $( CC) " PLATFORM = $( TARGET_OS) AR = " $( AR) " $( LEVELDB_TARGET_FLAGS) \
OPT = " $( CXXFLAGS) $( CPPFLAGS) "
2013-05-28 01:55:01 +02:00
2015-02-19 19:58:38 +01:00
qt/darkcoinstrings.cpp : $( libdarkcoin_server_a_SOURCES ) $( libdarkcoin_common_a_SOURCES ) $( libdarkcoin_cli_a_SOURCES )
2013-09-14 17:52:42 +02:00
@test -n $( XGETTEXT) || echo "xgettext is required for updating translations"
@cd $( top_srcdir) ; XGETTEXT = $( XGETTEXT) share/qt/extract_strings_qt.py
2013-05-28 01:55:01 +02:00
CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno
DISTCLEANFILES = obj/build.h
EXTRA_DIST = leveldb Makefile.include
clean-local :
-$( MAKE) -C leveldb clean
2013-11-28 03:17:17 +01:00
rm -f leveldb/*/*.gcno leveldb/helpers/memenv/*.gcno