mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

- Move content of swtpm-localca(8) manual page to swtpm_localca(8) and make swtpm-localca(8) an alias for swtpm_localca(8), mirroring the fact that /usr/bin/swtpm_localca is the actual program and /usr/share/swtpm/swtpm-localca a wrapper for it. - Change references to `swtpm-localca` in manual pages' content to `swtpm_localca`, reflecting the actual name of the program they are meant to document. Signed-off-by: Nick Chevsky <nchevsky@users.noreply.github.com>
54 lines
887 B
Makefile
54 lines
887 B
Makefile
#
|
|
# man/man8/Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
|
|
man8_PODS = \
|
|
swtpm.pod \
|
|
swtpm_bios.pod \
|
|
swtpm_cert.pod \
|
|
swtpm_cuse.pod \
|
|
swtpm_ioctl.pod \
|
|
swtpm_localca.pod \
|
|
swtpm_setup.pod \
|
|
swtpm_setup.conf.pod \
|
|
swtpm-create-tpmca.pod \
|
|
swtpm-localca.options.pod \
|
|
swtpm-localca.conf.pod
|
|
|
|
man8_generated_MANS = \
|
|
swtpm.8 \
|
|
swtpm_bios.8 \
|
|
swtpm_cert.8 \
|
|
swtpm_ioctl.8 \
|
|
swtpm_localca.8 \
|
|
swtpm_setup.8 \
|
|
swtpm_setup.conf.8 \
|
|
swtpm-create-tpmca.8 \
|
|
swtpm-localca.options.8 \
|
|
swtpm-localca.conf.8
|
|
|
|
if WITH_CUSE
|
|
man8_generated_MANS += \
|
|
swtpm_cuse.8
|
|
endif
|
|
|
|
man8_static_MANS = \
|
|
swtpm-localca.8
|
|
|
|
man8_MANS = \
|
|
$(man8_generated_MANS) \
|
|
$(man8_static_MANS)
|
|
|
|
%.8 : %.pod
|
|
@pod2man -r "swtpm" \
|
|
-c "" \
|
|
-n $(basename $@) \
|
|
--section=8 $< > $@
|
|
|
|
EXTRA_DIST = $(man8_static_MANS) $(man8_PODS)
|
|
|
|
CLEANFILES = $(man8_generated_MANS)
|