dash/doc/man/Makefile.am
Wladimir J. van der Laan 06dad4ca98 Merge #15947: Install bitcoin-wallet manpage
00d110463aed12ecdc6e9c2bf47d9ef61d19fa9d Install bitcoin-wallet manpage. (Daniel Kraft)

Pull request description:

  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.

ACKs for commit 00d110:
  laanwj:
    utACK 00d110463aed12ecdc6e9c2bf47d9ef61d19fa9d
  practicalswift:
    utACK 00d110463aed12ecdc6e9c2bf47d9ef61d19fa9d

Tree-SHA512: ca846e414548f1dc774f460edca2e17d7d619c7e6f0d18db0c58c09e04f9d43c6964fcf2bacb5b1eae94de9c5fdda86abf258ef6b78b0f693715d070dfc10f08
2023-02-10 23:34:57 +03:00

24 lines
313 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
if ENABLE_WALLET
if BUILD_BITCOIN_WALLET
dist_man1_MANS+=dash-wallet.1
endif
endif