]> git.siccegge.de Git - teilnehmertool.git/commitdiff
teilnehmertool: submakefile für listen und quittungen
authorJohannes Schilling <of82ecuq@cip.cs.fau.de>
Tue, 29 Oct 2013 16:20:39 +0000 (17:20 +0100)
committerJohannes Schilling <of82ecuq@cip.cs.fau.de>
Tue, 29 Oct 2013 16:20:39 +0000 (17:20 +0100)
listen/Makefile [new file with mode: 0644]

diff --git a/listen/Makefile b/listen/Makefile
new file mode 100644 (file)
index 0000000..454071f
--- /dev/null
@@ -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