summaryrefslogtreecommitdiffstats
path: root/ue4/protokoll/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ue4/protokoll/Makefile')
-rw-r--r--ue4/protokoll/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/ue4/protokoll/Makefile b/ue4/protokoll/Makefile
new file mode 100644
index 0000000..3acf895
--- /dev/null
+++ b/ue4/protokoll/Makefile
@@ -0,0 +1,20 @@
1# Makefile for protokoll
2# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348)
3# Created: 26.04.2009
4
5TEXFILE= protokoll.tex
6PDFFILE= $(shell echo $(TEXFILE) | sed -e 's/\.tex$$/\.pdf/')
7PDFLATEX= pdflatex
8TMPDIR= tmp
9
10all: tex
11
12tex:
13 @echo $(PDFFILE)" lala"
14 @mkdir -p $(TMPDIR)
15 @$(PDFLATEX) -interaction=nonstopmode -output-directory=$(TMPDIR) $(TEXFILE)
16 @$(PDFLATEX) -interaction=nonstopmode -output-directory=$(TMPDIR) $(TEXFILE)
17 @cp $(TMPDIR)/$(PDFFILE) ../
18 @rm -rf $(TMPDIR)
19
20# vim600: noet sw=8 ts=8