summaryrefslogtreecommitdiffstats
path: root/ue4/protokoll/Makefile
diff options
context:
space:
mode:
authormanuel <manuel@nc8430.lan>2009-05-26 14:49:37 +0200
committermanuel <manuel@nc8430.lan>2009-05-26 14:49:37 +0200
commit1a60d0c2a8eeef3b39ef276f0f3552552a1519b1 (patch)
tree038e7ea34e7093f959372885869234b90734331e /ue4/protokoll/Makefile
parent1b2db0dfe36f134850965276ba62700dba02da4d (diff)
downloadooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.tar.gz
ooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.tar.bz2
ooprog-1a60d0c2a8eeef3b39ef276f0f3552552a1519b1.zip
adding ue4 (copy from ue3)
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