mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 15:50:07 +01:00
This change marks the already-existing bitcoin-wallet.1 manpage file for
installation together with the others. Previously, only bitcoind.1,
bitcoin-cli.1, bitcoin-tx.1 and bitcoin-qt.1 would be installed.
Github-Pull: #15947
Rebased-From: 00d110463a
24 lines
328 B
Makefile
24 lines
328 B
Makefile
dist_man1_MANS=
|
|
|
|
if BUILD_BITCOIND
|
|
dist_man1_MANS+=bitcoind.1
|
|
endif
|
|
|
|
if ENABLE_QT
|
|
dist_man1_MANS+=bitcoin-qt.1
|
|
endif
|
|
|
|
if BUILD_BITCOIN_CLI
|
|
dist_man1_MANS+=bitcoin-cli.1
|
|
endif
|
|
|
|
if BUILD_BITCOIN_TX
|
|
dist_man1_MANS+=bitcoin-tx.1
|
|
endif
|
|
|
|
if ENABLE_WALLET
|
|
if BUILD_BITCOIN_WALLET
|
|
dist_man1_MANS+=bitcoin-wallet.1
|
|
endif
|
|
endif
|