Skip to content

Commit ff734e9

Browse files
jtimontheuni
authored andcommitted
Alphabetic order in makefile
1 parent 5207f33 commit ff734e9

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

src/Makefile.am

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -77,20 +77,22 @@ BITCOIN_CORE_H = \
7777
base58.h \
7878
bloom.h \
7979
chain.h \
80-
chainparamsbase.h \
8180
chainparams.h \
81+
chainparamsbase.h \
8282
chainparamsseeds.h \
8383
checkpoints.h \
8484
checkqueue.h \
8585
clientversion.h \
8686
coincontrol.h \
8787
coins.h \
8888
compat.h \
89+
compat/byteswap.h \
90+
compat/endian.h \
91+
compat/sanity.h \
8992
compressor.h \
9093
consensus/consensus.h \
9194
consensus/params.h \
9295
core_io.h \
93-
wallet/db.h \
9496
eccryptoverify.h \
9597
ecwrapper.h \
9698
hash.h \
@@ -103,8 +105,8 @@ BITCOIN_CORE_H = \
103105
merkleblock.h \
104106
miner.h \
105107
mruset.h \
106-
netbase.h \
107108
net.h \
109+
netbase.h \
108110
noui.h \
109111
policy/fees.h \
110112
pow.h \
@@ -117,8 +119,8 @@ BITCOIN_CORE_H = \
117119
rpcprotocol.h \
118120
rpcserver.h \
119121
script/interpreter.h \
120-
script/script_error.h \
121122
script/script.h \
123+
script/script_error.h \
122124
script/sigcache.h \
123125
script/sign.h \
124126
script/standard.h \
@@ -144,12 +146,10 @@ BITCOIN_CORE_H = \
144146
validationinterface.h \
145147
version.h \
146148
wallet/crypter.h \
147-
wallet/walletdb.h \
149+
wallet/db.h \
148150
wallet/wallet.h \
149151
wallet/wallet_ismine.h \
150-
compat/byteswap.h \
151-
compat/endian.h \
152-
compat/sanity.h
152+
wallet/walletdb.h
153153

154154
JSON_H = \
155155
json/json_spirit.h \
@@ -216,39 +216,37 @@ libbitcoin_wallet_a_SOURCES = \
216216
# crypto primitives library
217217
crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES)
218218
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 \
225219
crypto/common.h \
226-
crypto/sha256.h \
227-
crypto/sha512.h \
220+
crypto/hmac_sha256.cpp \
228221
crypto/hmac_sha256.h \
222+
crypto/hmac_sha512.cpp \
229223
crypto/hmac_sha512.h \
224+
crypto/ripemd160.cpp \
225+
crypto/ripemd160.h \
226+
crypto/sha1.cpp \
230227
crypto/sha1.h \
231-
crypto/ripemd160.h
228+
crypto/sha256.cpp \
229+
crypto/sha256.h \
230+
crypto/sha512.cpp \
231+
crypto/sha512.h
232232

233233
# univalue JSON library
234234
univalue_libbitcoin_univalue_a_SOURCES = \
235235
univalue/univalue.cpp \
236-
univalue/univalue_read.cpp \
237-
univalue/univalue_write.cpp \
236+
univalue/univalue.h \
238237
univalue/univalue_escapes.h \
239-
univalue/univalue.h
238+
univalue/univalue_read.cpp \
239+
univalue/univalue_write.cpp
240240

241241
# common: shared between bitcoind, and bitcoin-qt and non-server tools
242242
libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES)
243243
libbitcoin_common_a_SOURCES = \
244-
arith_uint256.cpp \
245244
amount.cpp \
245+
arith_uint256.cpp \
246246
base58.cpp \
247247
chainparams.cpp \
248248
coins.cpp \
249249
compressor.cpp \
250-
primitives/block.cpp \
251-
primitives/transaction.cpp \
252250
core_read.cpp \
253251
core_write.cpp \
254252
eccryptoverify.cpp \
@@ -257,13 +255,15 @@ libbitcoin_common_a_SOURCES = \
257255
key.cpp \
258256
keystore.cpp \
259257
netbase.cpp \
258+
primitives/block.cpp \
259+
primitives/transaction.cpp \
260260
protocol.cpp \
261261
pubkey.cpp \
262262
script/interpreter.cpp \
263263
script/script.cpp \
264+
script/script_error.cpp \
264265
script/sign.cpp \
265266
script/standard.cpp \
266-
script/script_error.cpp \
267267
$(BITCOIN_CORE_H)
268268

269269
# util: shared between all executables.

0 commit comments

Comments
 (0)