Added makefile

pull/1/head
Valentin Ochs 2017-09-01 16:23:42 +02:00
parent 24f5f3e635
commit 23f19cd201
1 changed files with 15 additions and 0 deletions

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