mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
ea750966f9
a2a04a5abb Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled (Luke Dashjr) 92af71cea9 configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx (Luke Dashjr) Pull request description: Includes #5618 (which the reasons for rejecting no longer hold true) Tree-SHA512: f30a8e4a2f70166b7cabef77c4674163b3a9da14c6a547d34f00d1056a19bf4d23e22851eea726fad2afc8735d5473ae91122c770b65ac3886663dc20e2c5b70
18 lines
227 B
Makefile
18 lines
227 B
Makefile
dist_man1_MANS=
|
|
|
|
if BUILD_BITCOIND
|
|
dist_man1_MANS+=dashd.1
|
|
endif
|
|
|
|
if ENABLE_QT
|
|
dist_man1_MANS+=dash-qt.1
|
|
endif
|
|
|
|
if BUILD_BITCOIN_CLI
|
|
dist_man1_MANS+=dash-cli.1
|
|
endif
|
|
|
|
if BUILD_BITCOIN_TX
|
|
dist_man1_MANS+=dash-tx.1
|
|
endif
|