diff options
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 000000000..0c8690c78 --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1,13 @@ +## Process this file with automake to create Makefile.in + +EXTRA_DIST = DETAILS rfcs gpg.1pod gpg.1 + +man_MANS = gpg.1 + +%: %pod + pod2man $< --section=`echo $@ | sed 's/^.*(?)$$/$$&/'`\ + --release="`date -r $< '+%d %b %Y'`"\ + --center="GNU Tools" --date=' '\ + >$@,$$$$ && mv -f $@,$$$$ $@\ + || rm -f $@,$$$$ + |