build: install man pages by default

Since we're already installing man pages conditionally
(only install a man page when the corresponding program is enabled),
it makes more sense to install them by default,
instead of having to install separately with `make install-man`.
This commit is contained in:
CismonX 2025-07-09 21:02:22 +08:00
parent d911439ca3
commit 328095ae43
No known key found for this signature in database
GPG key ID: 3094873E29A482FB
2 changed files with 2 additions and 3 deletions

View file

@ -147,7 +147,7 @@ Installation
Install the user manual:
$ make install-man install-info
$ make install-info
Uninstall:

View file

@ -13,8 +13,7 @@ AC_CONFIG_SRCDIR([src/bookmarkfs_util.pc.in])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_TESTDIR([tests])
AM_INIT_AUTOMAKE([1.14 foreign no-installinfo no-installman])
AM_EXTRA_RECURSIVE_TARGETS([install-man])
AM_INIT_AUTOMAKE([1.14 foreign no-installinfo])
AM_MISSING_PROG([AUTOM4TE], [autom4te])
PKG_PROG_PKG_CONFIG([0.27])
LT_PREREQ([2.4.3])