cado/man/Makefile

19 lines
732 B
Makefile
Raw Normal View History

PANDOC=pandoc
PANDOCOK := $(shell command -v ${PANDOC} 2> /dev/null)
2020-01-08 11:19:54 +01:00
none:
% : %.md
ifdef PANDOCOK
2020-01-08 11:19:54 +01:00
# copy copyright notice
grep "^\.\\\\\"" $< > $@ || true
# run pandoc
$(eval SECTION := $(subst .,,$(suffix $@)))
$(eval BASENAME := $(basename $@))
$(eval TITLE := $(shell echo "${BASENAME}\(${SECTION}\)" | tr [:lower:] [:upper:]))
$(eval HEADER := "$(shell man ${SECTION} intro | head -1 | sed -e 's/^[^[:blank:]]*[[:blank:]]*//' -e 's/[[:blank:]]*[^[:blank:]]*$$//' )")
$(PANDOC) -standalone -M title=${TITLE} -M section=${SECTION} -M header=${HEADER} -M footer=${PANDOC_ORG} -M "date=`date +\"%B %Y\"`" --to man $< >> $@
2020-01-08 11:19:54 +01:00
else
echo "${PANDOC} is not available. Manpage $@ cannot be updated" >/dev/stderr >&2
2020-01-08 11:19:54 +01:00
endif