swtpm/man/man5/Makefile.am
Seunghun Han 33aa135545 Move *.conf and *.options to man5
According to the man page sections guideline, man8 should be used
for system administration commands. So this commit moves *.conf and
*.options files to man5.

Signed-off-by: Seunghun Han <kkamagui@gmail.com>
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
2021-11-22 18:30:17 -05:00

25 lines
401 B
Makefile

#
# man/man5/Makefile.am
#
# For the license, see the COPYING file in the root directory.
#
man5_PODS = \
swtpm_setup.conf.pod \
swtpm-localca.options.pod \
swtpm-localca.conf.pod
man5_MANS = \
swtpm_setup.conf.5 \
swtpm-localca.options.5 \
swtpm-localca.conf.5
%.5 : %.pod
@pod2man -r "swtpm" \
-c "" \
-n $(basename $@) \
--section=5 $< > $@
EXTRA_DIST = $(man5_MANS) $(man5_PODS)