This repository has been archived on 2024-03-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
adlin/subject/Makefile

11 lines
128 B
Makefile

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