summaryrefslogtreecommitdiffstats
path: root/share/man/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'share/man/Makefile')
-rw-r--r--share/man/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/share/man/Makefile b/share/man/Makefile
index ae5a737..56408d7 100644
--- a/share/man/Makefile
+++ b/share/man/Makefile
@@ -35,12 +35,16 @@ build: man
rebuild: clean build
-man: *.rst
+man: man.in *.rst
@echo -n "Creating manpages... "
@for FILE in *.rst; \
do \
- $(RST2MAN) $${FILE} > $$(basename $${FILE} .rst); \
+ cp man.in $$(basename $${FILE} .rst); \
+ $(RST2MAN) $${FILE} | \
+ sed -e '/^.\\" Man page generated/d' \
+ -e '/^.\\" Generated by/d' \
+ >> $$(basename $${FILE} .rst); \
echo -n "."; \
done