mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
68 lines
2.6 KiB
Makefile
68 lines
2.6 KiB
Makefile
|
AM_CPPFLAGS = $(INCLUDES) -I$(top_builddir)/src/obj \
|
||
|
-I$(top_srcdir)/src/leveldb/include -I$(top_srcdir)/src/leveldb/helpers \
|
||
|
$(BOOST_INCLUDES)
|
||
|
AM_LDFLAGS = $(PTHREAD_CFLAGS)
|
||
|
|
||
|
noinst_LIBRARIES = libbitcoin.a
|
||
|
|
||
|
bin_PROGRAMS = bitcoind
|
||
|
|
||
|
SUBDIRS = . $(BUILD_QT) $(BUILD_TEST)
|
||
|
DIST_SUBDIRS = . qt test
|
||
|
.PHONY: FORCE
|
||
|
# bitcoin core #
|
||
|
BITCOIN_CORE_H = addrman.h alert.h allocators.h base58.h bignum.h \
|
||
|
bitcoinrpc.h bloom.h chainparams.h checkpoints.h checkqueue.h \
|
||
|
clientversion.h compat.h core.h crypter.h db.h hash.h init.h \
|
||
|
key.h keystore.h leveldb.h limitedmap.h main.h miner.h mruset.h \
|
||
|
netbase.h net.h protocol.h script.h serialize.h sync.h threadsafety.h \
|
||
|
txdb.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 \
|
||
|
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
|
||
|
|
||
|
libbitcoin_a_SOURCES = addrman.cpp alert.cpp bitcoinrpc.cpp bloom.cpp \
|
||
|
chainparams.cpp checkpoints.cpp core.cpp crypter.cpp db.cpp hash.cpp \
|
||
|
init.cpp key.cpp keystore.cpp leveldb.cpp main.cpp miner.cpp \
|
||
|
netbase.cpp net.cpp noui.cpp protocol.cpp rpcblockchain.cpp rpcdump.cpp \
|
||
|
rpcmining.cpp rpcnet.cpp rpcrawtransaction.cpp rpcwallet.cpp script.cpp \
|
||
|
sync.cpp txdb.cpp util.cpp version.cpp wallet.cpp walletdb.cpp $(JSON_H) \
|
||
|
$(BITCOIN_CORE_H)
|
||
|
|
||
|
nodist_libbitcoin_a_SOURCES = $(top_srcdir)/src/obj/build.h
|
||
|
#
|
||
|
|
||
|
# bitcoind binary #
|
||
|
bitcoind_LDADD = libbitcoin.a leveldb/libleveldb.a leveldb/libmemenv.a \
|
||
|
$(BOOST_LIBS)
|
||
|
bitcoind_SOURCES = bitcoind.cpp
|
||
|
#
|
||
|
|
||
|
leveldb/libleveldb.a:
|
||
|
@echo "Building LevelDB ..." && cd leveldb && CXX="$(CXX)" CC="$(CC)" \
|
||
|
PLATFORM=$(TARGET_OS) AR="$(AR)" $(MAKE) $(LEVELDB_TARGET_FLAGS) OPT="$(CXXFLAGS) $(CPPFLAGS)" libleveldb.a
|
||
|
|
||
|
leveldb/libmemenv.a:
|
||
|
@echo "Building LevelDB ..." && cd leveldb && CXX="$(CXX)" CC="$(CC)" \
|
||
|
PLATFORM=$(TARGET_OS) AR="$(AR)" $(MAKE) $(LEVELDB_TARGET_FLAGS) OPT="$(CXXFLAGS) $(CPPFLAGS)" libmemenv.a
|
||
|
|
||
|
CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno
|
||
|
|
||
|
DISTCLEANFILES = obj/build.h
|
||
|
|
||
|
EXTRA_DIST = leveldb Makefile.include
|
||
|
|
||
|
clean-local:
|
||
|
-$(MAKE) -C leveldb clean
|
||
|
rm -f leveldb/port/*.gcno leveldb/db/*.gcno leveldb/table/*.gcno leveldb/helpers/*.gcno
|
||
|
rm -f leveldb/util/*.gcno leveldb/helpers/memenv/*.gcno
|