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

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>
25 lines
401 B
Makefile
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)
|