Mercurial > docs > DesignPatterns
annotate Makefile @ 19:356aeb2f53f3
merged anderePatterns with AntiPatterns
author | meillo@marmaro.de |
---|---|
date | Tue, 26 Jun 2007 09:47:28 +0200 |
parents | dc88dad3b5af |
children | 12d6f1a641c8 |
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 02_anderePatterns.tex | |
11 pdflatex 03_observer.tex | |
12 pdflatex 04_composite.tex | |
13 pdflatex 05_antiPatterns.tex | |
14 pdflatex 09_zusammenfassung.tex | |
15 | |
16 merge: | |
17 rm all.pdf | |
14 | 18 pdftk A=00_vorstellung.pdf cat A1-2 output 00_vorstellung-mod.pdf && rm 00_vorstellung.pdf |
13 | 19 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
|
20 |
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
21 |
7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
meillo@marmaro.de
parents:
3
diff
changeset
|
22 #all: ${OBJ} |
0 | 23 |
24 #.tex.pdf: | |
25 # @echo pdflatex $< | |
26 # @pdflatex $< | |
27 | |
28 ${OBJ}: ${SRC} | |
29 @echo pdflatex $@ | |
30 @pdflatex ${SRC} | |
31 @pdflatex ${SRC} | |
32 | |
33 xpdf: ${OBJ} | |
34 @echo xpdf $@ | |
3 | 35 @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
|
36 #@rm ${OBJ} |
0 | 37 |
2 | 38 clean: |
39 echo 'cleaning ...' | |
12 | 40 rm *.{aux,lof,log,lot,nav,out,snm,toc} 2> /dev/null |
0 | 41 |
12 | 42 .PHONY: all xpdf clean |