configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx

This commit is contained in:
Luke Dashjr
2014-12-25 11:43:52 +00:00
parent 288ddf4ff5
commit 92af71cea9
5 changed files with 37 additions and 14 deletions

View File

@@ -83,8 +83,11 @@ if BUILD_BITCOIND
bin_PROGRAMS += bitcoind
endif
if BUILD_BITCOIN_UTILS
bin_PROGRAMS += bitcoin-cli bitcoin-tx
if BUILD_BITCOIN_CLI
bin_PROGRAMS += bitcoin-cli
endif
if BUILD_BITCOIN_TX
bin_PROGRAMS += bitcoin-tx
endif
.PHONY: FORCE check-symbols check-security