diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1a68f52 --- /dev/null +++ b/Makefile @@ -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