Dokumente/Makefile

16 lines
189 B
Makefile
Raw Normal View History

PDF = Satzung.pdf Beitragsordnung.pdf
2017-09-01 14:23:42 +00:00
TEX = $(PDF:%.pdf=%.tex)
all: $(PDF)
$(PDF): %.pdf: %.tex
pdflatex $<
clean:
rm -f *.log *.aux
distclean: clean
rm -f $(PDF)
.PHONY: all clean