From aa139a7d2b3f26af7590edbf413df67195c5d900 Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 27 Apr 2009 00:25:16 +0200 Subject: Adding ue2 --- ue2/protokoll/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ue2/protokoll/Makefile (limited to 'ue2/protokoll/Makefile') diff --git a/ue2/protokoll/Makefile b/ue2/protokoll/Makefile new file mode 100644 index 0000000..94c8aa4 --- /dev/null +++ b/ue2/protokoll/Makefile @@ -0,0 +1,19 @@ +# 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) + @mv $(TMPDIR)/$(PDFFILE) ../ + @rm -rf $(TMPDIR) + +# vim600: noet sw=8 ts=8 -- cgit v1.2.3