tame/design/tpl/Makefile

16 lines
191 B
Makefile

inputs := tpl.tex tpl.sty tpl.bib \
$(wildcard sec/*.tex)
.DEFAULT: pdf
.PHONY: pdf
pdf: tpl.pdf
tpl.pdf: tpl.tex $(inputs)
latexmk --pdf $<
clean:
latexmk -c
rm -f tpl.pdf