@@ -77,20 +77,22 @@ BITCOIN_CORE_H = \
77
77
base58.h \
78
78
bloom.h \
79
79
chain.h \
80
- chainparamsbase.h \
81
80
chainparams.h \
81
+ chainparamsbase.h \
82
82
chainparamsseeds.h \
83
83
checkpoints.h \
84
84
checkqueue.h \
85
85
clientversion.h \
86
86
coincontrol.h \
87
87
coins.h \
88
88
compat.h \
89
+ compat/byteswap.h \
90
+ compat/endian.h \
91
+ compat/sanity.h \
89
92
compressor.h \
90
93
consensus/consensus.h \
91
94
consensus/params.h \
92
95
core_io.h \
93
- wallet/db.h \
94
96
eccryptoverify.h \
95
97
ecwrapper.h \
96
98
hash.h \
@@ -103,8 +105,8 @@ BITCOIN_CORE_H = \
103
105
merkleblock.h \
104
106
miner.h \
105
107
mruset.h \
106
- netbase.h \
107
108
net.h \
109
+ netbase.h \
108
110
noui.h \
109
111
policy/fees.h \
110
112
pow.h \
@@ -117,8 +119,8 @@ BITCOIN_CORE_H = \
117
119
rpcprotocol.h \
118
120
rpcserver.h \
119
121
script/interpreter.h \
120
- script/script_error.h \
121
122
script/script.h \
123
+ script/script_error.h \
122
124
script/sigcache.h \
123
125
script/sign.h \
124
126
script/standard.h \
@@ -144,12 +146,10 @@ BITCOIN_CORE_H = \
144
146
validationinterface.h \
145
147
version.h \
146
148
wallet/crypter.h \
147
- wallet/walletdb .h \
149
+ wallet/db .h \
148
150
wallet/wallet.h \
149
151
wallet/wallet_ismine.h \
150
- compat/byteswap.h \
151
- compat/endian.h \
152
- compat/sanity.h
152
+ wallet/walletdb.h
153
153
154
154
JSON_H = \
155
155
json/json_spirit.h \
@@ -216,39 +216,37 @@ libbitcoin_wallet_a_SOURCES = \
216
216
# crypto primitives library
217
217
crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES )
218
218
crypto_libbitcoin_crypto_a_SOURCES = \
219
- crypto/sha1.cpp \
220
- crypto/sha256.cpp \
221
- crypto/sha512.cpp \
222
- crypto/hmac_sha256.cpp \
223
- crypto/hmac_sha512.cpp \
224
- crypto/ripemd160.cpp \
225
219
crypto/common.h \
226
- crypto/sha256.h \
227
- crypto/sha512.h \
220
+ crypto/hmac_sha256.cpp \
228
221
crypto/hmac_sha256.h \
222
+ crypto/hmac_sha512.cpp \
229
223
crypto/hmac_sha512.h \
224
+ crypto/ripemd160.cpp \
225
+ crypto/ripemd160.h \
226
+ crypto/sha1.cpp \
230
227
crypto/sha1.h \
231
- crypto/ripemd160.h
228
+ crypto/sha256.cpp \
229
+ crypto/sha256.h \
230
+ crypto/sha512.cpp \
231
+ crypto/sha512.h
232
232
233
233
# univalue JSON library
234
234
univalue_libbitcoin_univalue_a_SOURCES = \
235
235
univalue/univalue.cpp \
236
- univalue/univalue_read.cpp \
237
- univalue/univalue_write.cpp \
236
+ univalue/univalue.h \
238
237
univalue/univalue_escapes.h \
239
- univalue/univalue.h
238
+ univalue/univalue_read.cpp \
239
+ univalue/univalue_write.cpp
240
240
241
241
# common: shared between bitcoind, and bitcoin-qt and non-server tools
242
242
libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES )
243
243
libbitcoin_common_a_SOURCES = \
244
- arith_uint256.cpp \
245
244
amount.cpp \
245
+ arith_uint256.cpp \
246
246
base58.cpp \
247
247
chainparams.cpp \
248
248
coins.cpp \
249
249
compressor.cpp \
250
- primitives/block.cpp \
251
- primitives/transaction.cpp \
252
250
core_read.cpp \
253
251
core_write.cpp \
254
252
eccryptoverify.cpp \
@@ -257,13 +255,15 @@ libbitcoin_common_a_SOURCES = \
257
255
key.cpp \
258
256
keystore.cpp \
259
257
netbase.cpp \
258
+ primitives/block.cpp \
259
+ primitives/transaction.cpp \
260
260
protocol.cpp \
261
261
pubkey.cpp \
262
262
script/interpreter.cpp \
263
263
script/script.cpp \
264
+ script/script_error.cpp \
264
265
script/sign.cpp \
265
266
script/standard.cpp \
266
- script/script_error.cpp \
267
267
$(BITCOIN_CORE_H )
268
268
269
269
# util: shared between all executables.
0 commit comments