From a7e42a67aae98ade48f7ba7199ed021ca276f373 Mon Sep 17 00:00:00 2001 From: manuel Date: Sun, 10 May 2009 16:07:02 +0200 Subject: adding ue3 --- ue3/protokoll/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ue3/protokoll/Makefile (limited to 'ue3/protokoll/Makefile') diff --git a/ue3/protokoll/Makefile b/ue3/protokoll/Makefile new file mode 100644 index 0000000..3acf895 --- /dev/null +++ b/ue3/protokoll/Makefile @@ -0,0 +1,20 @@ +# Makefile for protokoll +# Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) +# Created: 26.04.2009 + +TEXFILE= protokoll.tex +PDFFILE= $(shell echo $(TEXFILE) | sed -e 's/\.tex$$/\.pdf/') +PDFLATEX= pdflatex +TMPDIR= tmp + +all: tex + +tex: + @echo $(PDFFILE)" lala" + @mkdir -p $(TMPDIR) + @$(PDFLATEX) -interaction=nonstopmode -output-directory=$(TMPDIR) $(TEXFILE) + @$(PDFLATEX) -interaction=nonstopmode -output-directory=$(TMPDIR) $(TEXFILE) + @cp $(TMPDIR)/$(PDFFILE) ../ + @rm -rf $(TMPDIR) + +# vim600: noet sw=8 ts=8 -- cgit v1.2.3