From 92af71cea92f8a5185b44e63684b87da9d7ad8a8 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 25 Dec 2014 11:43:52 +0000 Subject: configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx --- src/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 159812e847..d036085642 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 -- cgit v1.2.3