swtpm/man/man8/Makefile.am
Stefan Berger 05f4d55f1f samples: Add a script to create a TPM 1.2 intermediate CA
This (experimental) script uses GnuTLS tpmtool to create a TPM 1.2
intermediate CA that can sign a vTPM's EK and platform certificates.

Add a man page for this tool.

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
2018-10-15 20:45:48 -04:00

46 lines
740 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_setup.pod \
swtpm_setup.conf.pod
swtpm-create-tpmca.pod \
swtpm-localca.pod \
swtpm-localca.options.pod \
swtpm-localca.conf.pod
man8_MANS = \
swtpm.8 \
swtpm_bios.8 \
swtpm_cert.8 \
swtpm_ioctl.8 \
swtpm_setup.8 \
swtpm_setup.conf.8 \
swtpm_setup.sh.8 \
swtpm-create-tpmca.8 \
swtpm-localca.8 \
swtpm-localca.options.8 \
swtpm-localca.conf.8
if WITH_CUSE
man8_MANS += \
swtpm_cuse.8
endif
%.8 : %.pod
@pod2man -r "swtpm" \
-c "" \
-n $(basename $@) \
--section=8 $< > $@
EXTRA_DIST = $(man8_MANS) $(man8_PODS)