diff options
| author | manuel <manuel@nc8430.lan> | 2009-05-10 16:07:02 +0200 |
|---|---|---|
| committer | manuel <manuel@nc8430.lan> | 2009-05-10 16:07:02 +0200 |
| commit | a7e42a67aae98ade48f7ba7199ed021ca276f373 (patch) | |
| tree | a5af158188968c12ca938ccb53e3ca9d8d32c398 /ue3/protokoll/Makefile | |
| parent | 10570eee9a8191674ecd3b67ac69187b5bfac041 (diff) | |
| download | ooprog-a7e42a67aae98ade48f7ba7199ed021ca276f373.tar.gz ooprog-a7e42a67aae98ade48f7ba7199ed021ca276f373.tar.bz2 ooprog-a7e42a67aae98ade48f7ba7199ed021ca276f373.zip | |
adding ue3
Diffstat (limited to 'ue3/protokoll/Makefile')
| -rw-r--r-- | ue3/protokoll/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
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 @@ | |||
| 1 | # Makefile for protokoll | ||
| 2 | # Author: Guenther Neuwirth (0626638), Manuel Mausz (0728348) | ||
| 3 | # Created: 26.04.2009 | ||
| 4 | |||
| 5 | TEXFILE= protokoll.tex | ||
| 6 | PDFFILE= $(shell echo $(TEXFILE) | sed -e 's/\.tex$$/\.pdf/') | ||
| 7 | PDFLATEX= pdflatex | ||
| 8 | TMPDIR= tmp | ||
| 9 | |||
| 10 | all: tex | ||
| 11 | |||
| 12 | tex: | ||
| 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 | ||
