-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathMakefile.am
More file actions
59 lines (56 loc) · 1.38 KB
/
Copy pathMakefile.am
File metadata and controls
59 lines (56 loc) · 1.38 KB
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
lib_LTLIBRARIES = libbitcoin.la
AM_CPPFLAGS = -I$(srcdir)/../include
AM_CXXFLAGS = ${my_CXXFLAGS}
libbitcoin_la_SOURCES = \
satoshi_serialize.cpp \
deterministic_wallet.cpp \
getx_responder.cpp \
async_service.cpp \
network/network.cpp \
network/handshake.cpp \
network/channel.cpp \
network/hosts.cpp \
network/protocol.cpp \
poller.cpp \
utility/serializer.cpp \
utility/logger.cpp \
utility/sha256.cpp \
address.cpp \
format.cpp \
script.cpp \
utility/ripemd.cpp \
block.cpp \
utility/elliptic_curve_key.cpp \
transaction.cpp \
error.cpp \
validate.cpp \
session.cpp \
utility/base58.cpp \
utility/big_number.cpp \
utility/key_formats.cpp \
constants.cpp \
blockchain/organizer.cpp \
blockchain/blockchain.cpp \
transaction_pool.cpp
if DO_KYOTO
libbitcoin_la_SOURCES += \
blockchain/kyoto/kyoto_common.cpp \
blockchain/kyoto/kyoto_blockchain.cpp
endif
if DO_BDB
libbitcoin_la_SOURCES += \
blockchain/bdb/data_type.cpp \
blockchain/bdb/txn_guard.cpp \
blockchain/bdb/bdb_blockchain.cpp \
blockchain/bdb/bitcoin.pb.cc \
blockchain/bdb/bdb_chain_keeper.cpp \
blockchain/bdb/bdb_organizer.cpp \
blockchain/bdb/bdb_validate_block.cpp \
blockchain/bdb/bdb_common.cpp \
blockchain/bdb/protobuf_wrapper.cpp
endif
if DO_POSTGRES
#libbitcoin_la_SOURCES += \
# blockchain/postgresql/pq_blockchain.cpp \
# blockchain/postgresql/postgresql_blockchain.cpp
endif