aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-10-27 13:37:25 +0100
committerWladimir J. van der Laan <[email protected]>2014-10-27 13:47:25 +0100
commitf35d71ed22c3d63d296587caf9426126b9ed40bf (patch)
tree96aa02e20a815bd8dd11f78dc5cf9e5cbfe912c6
parentMerge pull request #5086 (diff)
parentBuild util and common before building server (diff)
downloaddiscoin-f35d71ed22c3d63d296587caf9426126b9ed40bf.tar.xz
discoin-f35d71ed22c3d63d296587caf9426126b9ed40bf.zip
Merge pull request #5112
071473c Build util and common before building server (jtimon)
-rw-r--r--src/Makefile.am10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 42f325e09..dbefa71fc 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -36,13 +36,15 @@ LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
LIBBITCOIN_UNIVALUE=univalue/libbitcoin_univalue.a
LIBBITCOINQT=qt/libbitcoinqt.a
+# Make is not made aware of per-object dependencies to avoid limiting building parallelization
+# But to build the less dependent modules first, we manually select their order here:
noinst_LIBRARIES = \
- libbitcoin_server.a \
- libbitcoin_common.a \
- libbitcoin_cli.a \
+ crypto/libbitcoin_crypto.a \
libbitcoin_util.a \
+ libbitcoin_common.a \
univalue/libbitcoin_univalue.a \
- crypto/libbitcoin_crypto.a
+ libbitcoin_server.a \
+ libbitcoin_cli.a
if ENABLE_WALLET
BITCOIN_INCLUDES += $(BDB_CPPFLAGS)
noinst_LIBRARIES += libbitcoin_wallet.a