pandoc/Makefile
John MacFarlane a0e795fc40 Added Makefile to rebuild man pages.
This should only be needed by developers.
2014-08-13 12:31:19 -07:00

15 lines
266 B
Makefile

makemanpages=$(shell find dist -type f -name make-pandoc-man-pages | head -1)
MANPAGES=man/man1/pandoc.1 man/man5/pandoc_markdown.5
all: ${MANPAGES}
%.1: %.1.template
${makemanpages}
%.5: %.5.template
${makemanpages}
clean:
-rm ${MANPAGES}
.PHONY: all clean