From 384539f7cc9feaa7ef7cee385cce472c6966c843 Mon Sep 17 00:00:00 2001 From: manuel Date: Mon, 27 Apr 2009 00:24:16 +0200 Subject: Adding ue1 --- ue1/protokoll/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ue1/protokoll/Makefile (limited to 'ue1/protokoll/Makefile') 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 @@ +# Makefile for protokoll +# Author: Manuel Mausz (0728348) +# Created: 14.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