Browse Source

Alphabetic order in makefile

pull/145/head
Jorge Timón 9 years ago
committed by Cory Fields
parent
commit
ff734e905f
  1. 48
      src/Makefile.am

48
src/Makefile.am

@ -77,8 +77,8 @@ BITCOIN_CORE_H = \
base58.h \ base58.h \
bloom.h \ bloom.h \
chain.h \ chain.h \
chainparamsbase.h \
chainparams.h \ chainparams.h \
chainparamsbase.h \
chainparamsseeds.h \ chainparamsseeds.h \
checkpoints.h \ checkpoints.h \
checkqueue.h \ checkqueue.h \
@ -86,11 +86,13 @@ BITCOIN_CORE_H = \
coincontrol.h \ coincontrol.h \
coins.h \ coins.h \
compat.h \ compat.h \
compat/byteswap.h \
compat/endian.h \
compat/sanity.h \
compressor.h \ compressor.h \
consensus/consensus.h \ consensus/consensus.h \
consensus/params.h \ consensus/params.h \
core_io.h \ core_io.h \
wallet/db.h \
eccryptoverify.h \ eccryptoverify.h \
ecwrapper.h \ ecwrapper.h \
hash.h \ hash.h \
@ -103,8 +105,8 @@ BITCOIN_CORE_H = \
merkleblock.h \ merkleblock.h \
miner.h \ miner.h \
mruset.h \ mruset.h \
netbase.h \
net.h \ net.h \
netbase.h \
noui.h \ noui.h \
policy/fees.h \ policy/fees.h \
pow.h \ pow.h \
@ -117,8 +119,8 @@ BITCOIN_CORE_H = \
rpcprotocol.h \ rpcprotocol.h \
rpcserver.h \ rpcserver.h \
script/interpreter.h \ script/interpreter.h \
script/script_error.h \
script/script.h \ script/script.h \
script/script_error.h \
script/sigcache.h \ script/sigcache.h \
script/sign.h \ script/sign.h \
script/standard.h \ script/standard.h \
@ -144,12 +146,10 @@ BITCOIN_CORE_H = \
validationinterface.h \ validationinterface.h \
version.h \ version.h \
wallet/crypter.h \ wallet/crypter.h \
wallet/walletdb.h \ wallet/db.h \
wallet/wallet.h \ wallet/wallet.h \
wallet/wallet_ismine.h \ wallet/wallet_ismine.h \
compat/byteswap.h \ wallet/walletdb.h
compat/endian.h \
compat/sanity.h
JSON_H = \ JSON_H = \
json/json_spirit.h \ json/json_spirit.h \
@ -216,39 +216,37 @@ libbitcoin_wallet_a_SOURCES = \
# crypto primitives library # crypto primitives library
crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES) crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES)
crypto_libbitcoin_crypto_a_SOURCES = \ crypto_libbitcoin_crypto_a_SOURCES = \
crypto/sha1.cpp \
crypto/sha256.cpp \
crypto/sha512.cpp \
crypto/hmac_sha256.cpp \
crypto/hmac_sha512.cpp \
crypto/ripemd160.cpp \
crypto/common.h \ crypto/common.h \
crypto/sha256.h \ crypto/hmac_sha256.cpp \
crypto/sha512.h \
crypto/hmac_sha256.h \ crypto/hmac_sha256.h \
crypto/hmac_sha512.cpp \
crypto/hmac_sha512.h \ crypto/hmac_sha512.h \
crypto/ripemd160.cpp \
crypto/ripemd160.h \
crypto/sha1.cpp \
crypto/sha1.h \ crypto/sha1.h \
crypto/ripemd160.h crypto/sha256.cpp \
crypto/sha256.h \
crypto/sha512.cpp \
crypto/sha512.h
# univalue JSON library # univalue JSON library
univalue_libbitcoin_univalue_a_SOURCES = \ univalue_libbitcoin_univalue_a_SOURCES = \
univalue/univalue.cpp \ univalue/univalue.cpp \
univalue/univalue_read.cpp \ univalue/univalue.h \
univalue/univalue_write.cpp \
univalue/univalue_escapes.h \ univalue/univalue_escapes.h \
univalue/univalue.h univalue/univalue_read.cpp \
univalue/univalue_write.cpp
# common: shared between bitcoind, and bitcoin-qt and non-server tools # common: shared between bitcoind, and bitcoin-qt and non-server tools
libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES) libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES)
libbitcoin_common_a_SOURCES = \ libbitcoin_common_a_SOURCES = \
arith_uint256.cpp \
amount.cpp \ amount.cpp \
arith_uint256.cpp \
base58.cpp \ base58.cpp \
chainparams.cpp \ chainparams.cpp \
coins.cpp \ coins.cpp \
compressor.cpp \ compressor.cpp \
primitives/block.cpp \
primitives/transaction.cpp \
core_read.cpp \ core_read.cpp \
core_write.cpp \ core_write.cpp \
eccryptoverify.cpp \ eccryptoverify.cpp \
@ -257,13 +255,15 @@ libbitcoin_common_a_SOURCES = \
key.cpp \ key.cpp \
keystore.cpp \ keystore.cpp \
netbase.cpp \ netbase.cpp \
primitives/block.cpp \
primitives/transaction.cpp \
protocol.cpp \ protocol.cpp \
pubkey.cpp \ pubkey.cpp \
script/interpreter.cpp \ script/interpreter.cpp \
script/script.cpp \ script/script.cpp \
script/script_error.cpp \
script/sign.cpp \ script/sign.cpp \
script/standard.cpp \ script/standard.cpp \
script/script_error.cpp \
$(BITCOIN_CORE_H) $(BITCOIN_CORE_H)
# util: shared between all executables. # util: shared between all executables.

Loading…
Cancel
Save