This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/subject/Makefile

12 lines
128 B
Makefile

MANPAGES=adlin.6.gz
all: ${MANPAGES}
.md.gz:
pandoc -i $< -s -t man | gzip > $@
clean::
rm ${MANPAGES}
.SUFFIXES: .md .gz