summaryrefslogtreecommitdiffstats
path: root/ue1/protokoll/Makefile
diff options
context:
space:
mode:
authormanuel <manuel@nc8430.lan>2009-04-27 00:24:16 +0200
committermanuel <manuel@nc8430.lan>2009-04-27 00:24:16 +0200
commit384539f7cc9feaa7ef7cee385cce472c6966c843 (patch)
tree42d3cbc96d44087c0b6bbe8d41710e5c5f1efced /ue1/protokoll/Makefile
downloadooprog-384539f7cc9feaa7ef7cee385cce472c6966c843.tar.gz
ooprog-384539f7cc9feaa7ef7cee385cce472c6966c843.tar.bz2
ooprog-384539f7cc9feaa7ef7cee385cce472c6966c843.zip
Adding ue1
Diffstat (limited to 'ue1/protokoll/Makefile')
-rw-r--r--ue1/protokoll/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/ue1/protokoll/Makefile b/ue1/protokoll/Makefile
new file mode 100644
index 0000000..a56bff6
--- /dev/null
+++ b/ue1/protokoll/Makefile
@@ -0,0 +1,19 @@
1# Makefile for protokoll
2# Author: Manuel Mausz (0728348)
3# Created: 14.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 @mv $(TMPDIR)/$(PDFFILE) ../
17 @rm -rf $(TMPDIR)
18
19# vim600: noet sw=8 ts=8