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

This patch adds a man page that describes the supported ioctl's. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
21 lines
287 B
Makefile
21 lines
287 B
Makefile
#
|
|
# man/man3/Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
|
|
man3_PODS = \
|
|
swtpm_ioctls.pod
|
|
|
|
man3_MANS = \
|
|
swtpm_ioctls.3
|
|
|
|
%.3 : %.pod
|
|
@pod2man -r "swtpm" \
|
|
-c "" \
|
|
-n $(basename $@) \
|
|
--section=3 $< > $@
|
|
|
|
EXTRA_DIST = $(man3_MANS) $(man3_PODS)
|