configure: Internal changes to make building bitcoind and bitcoin-cli optional

This commit is contained in:
Luke Dashjr
2013-09-08 02:44:12 +00:00
parent 4a290b526c
commit f930341d81
2 changed files with 19 additions and 1 deletions

View File

@@ -10,7 +10,15 @@ if ENABLE_WALLET
noinst_LIBRARIES += libbitcoin_wallet.a
endif
bin_PROGRAMS = bitcoind bitcoin-cli
bin_PROGRAMS =
if BUILD_BITCOIND
bin_PROGRAMS += bitcoind
endif
if BUILD_BITCOIN_CLI
bin_PROGRAMS += bitcoin-cli
endif
SUBDIRS = . $(BUILD_QT) $(BUILD_TEST)
DIST_SUBDIRS = . qt test