swtpm/man/man8/Makefile.am
Stefan Berger 0fb6f9001b man: Replace swtpm_cuse man page with redirect to swtpm man page
The swtpm man page also covers the CUSE TPM, so do not maintain the
swtpm_cuse man page anymore but replace it with a redirect to the swtpm
mane page instead.

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
2022-08-10 19:30:35 -04:00

43 lines
674 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_ioctl.pod \
swtpm_localca.pod \
swtpm_setup.pod \
swtpm-create-tpmca.pod
man8_generated_MANS = \
swtpm.8 \
swtpm_bios.8 \
swtpm_cert.8 \
swtpm_ioctl.8 \
swtpm_localca.8 \
swtpm_setup.8 \
swtpm-create-tpmca.8
man8_static_MANS = \
swtpm_cuse.8 \
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)