Mercurial > docs > DesignPatterns
annotate Makefile @ 37:debbd3bf76ce default tip
Added tag Ausarbeitung final for changeset f03413250b39d73ca44b22ea1e4022fd3c9e825d
author | meillo@marmaro.de |
---|---|
date | Sat, 11 Aug 2007 22:43:34 +0200 |
parents | 80c995d97cfa |
children |
rev | line source |
---|---|
1 | 1 # Makefile for latex docs |
0 | 2 |
6
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
3 SRC = observer.tex composite.tex |
0 | 4 OBJ = ${SRC:.tex=.pdf} |
5 | |
6
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
6 |
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
7 all: |
13 | 8 pdflatex 00_vorstellung.tex |
9 pdflatex 01_einfuehrung.tex | |
10 pdflatex 03_observer.tex | |
11 pdflatex 04_composite.tex | |
12 pdflatex 05_antiPatterns.tex | |
13 pdflatex 09_zusammenfassung.tex | |
14 | |
15 merge: | |
21 | 16 rm -f all.pdf |
14 | 17 pdftk A=00_vorstellung.pdf cat A1-2 output 00_vorstellung-mod.pdf && rm 00_vorstellung.pdf |
13 | 18 pdftk *.pdf cat output all.pdf |
6
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
19 |
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
20 |
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
21 #all: ${OBJ} |
0 | 22 |
23 #.tex.pdf: | |
24 # @echo pdflatex $< | |
25 # @pdflatex $< | |
26 | |
27 ${OBJ}: ${SRC} | |
28 @echo pdflatex $@ | |
29 @pdflatex ${SRC} | |
30 @pdflatex ${SRC} | |
31 | |
32 xpdf: ${OBJ} | |
33 @echo xpdf $@ | |
3 | 34 @xpdf -fullscreen -z page ${OBJ} |
6
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
35 #@rm ${OBJ} |
0 | 36 |
2 | 37 clean: |
38 echo 'cleaning ...' | |
12 | 39 rm *.{aux,lof,log,lot,nav,out,snm,toc} 2> /dev/null |
0 | 40 |
12 | 41 .PHONY: all xpdf clean |