From: Johannes Schilling Date: Tue, 29 Oct 2013 16:20:39 +0000 (+0100) Subject: teilnehmertool: submakefile für listen und quittungen X-Git-Url: https://git.siccegge.de//index.cgi?p=teilnehmertool.git;a=commitdiff_plain;h=58e3226d977b186646e0bba93c578546f14a490e teilnehmertool: submakefile für listen und quittungen --- diff --git a/listen/Makefile b/listen/Makefile new file mode 100644 index 0000000..454071f --- /dev/null +++ b/listen/Makefile @@ -0,0 +1,18 @@ +TEXs = $(wildcard *.tex) +PDFs = $(TEXs:%.tex=%.pdf) + + +all: $(PDFs) + +%.pdf: %.tex + latexmk -pdf $< + + +clean: + rm -f texs $(PDFs) packliste.pdf teilnehmer-strichliste.pdf teilnehmerliste.pdf + + +realclean: clean + rm -f $(TEXs) + +.PHONY: clean all