Added makefile

This commit is contained in:
Lynn Ochs 2017-09-01 16:23:42 +02:00
parent 24f5f3e635
commit 23f19cd201

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
PDF = Satzung.pdf
TEX = $(PDF:%.pdf=%.tex)
all: $(PDF)
$(PDF): %.pdf: %.tex
pdflatex $<
clean:
rm -f *.log *.aux
distclean: clean
rm -f $(PDF)
.PHONY: all clean