1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
bitcoin_includedir = $(includedir)/bitcoin
bitcoin_include_HEADERS = \
transaction_indexer.hpp \
satoshi_serialize.hpp \
getx_responder.hpp \
error.hpp \
validate.hpp \
primitives.hpp \
script.hpp \
address.hpp \
transaction.hpp \
constants.hpp \
block.hpp \
bitcoin.hpp \
types.hpp \
session.hpp \
format.hpp \
transaction_pool.hpp \
threadpool.hpp \
poller.hpp \
version.hpp
bitcoin_impl_serialize_includedir = $(includedir)/bitcoin/impl/serialize
bitcoin_impl_serialize_include_HEADERS = \
impl/serialize/misc.ipp \
impl/serialize/block.ipp
bitcoin_blockchain_includedir = $(includedir)/bitcoin/blockchain
bitcoin_blockchain_include_HEADERS = \
blockchain/blockchain.hpp \
blockchain/organizer.hpp
if DO_LEVELDB
bitcoin_blockchain_include_HEADERS += \
blockchain/leveldb_blockchain.hpp
endif
bitcoin_network_includedir = $(includedir)/bitcoin/network
bitcoin_network_include_HEADERS = \
network/channel.hpp \
network/network.hpp \
network/handshake.hpp \
network/shared_const_buffer.hpp \
network/hosts.hpp \
network/protocol.hpp
bitcoin_util_includedir = $(includedir)/bitcoin/utility
bitcoin_util_include_HEADERS = \
utility/async_parallel.hpp \
utility/elliptic_curve_key.hpp \
utility/sha256.hpp \
utility/serializer.hpp \
utility/assert.hpp \
utility/big_number.hpp \
utility/base58.hpp \
utility/ripemd.hpp \
utility/subscriber.hpp \
utility/logger.hpp \
utility/weak_bind.hpp \
utility/mnemonic.hpp \
utility/timed_section.hpp
|