Mercurial > docs > diploma
annotate thesis/Makefile @ 218:711f0d3f5dfd
minor change for block quotes
author | meillo@marmaro.de |
---|---|
date | Sun, 04 Jan 2009 22:57:49 +0100 |
parents | aa14d1925151 |
children | 13e630c5a44d |
rev | line source |
---|---|
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
1 # makefile using `latexmk' |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
2 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
3 DOC=thesis |
169 | 4 COVER=cover |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
5 |
54
da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents:
8
diff
changeset
|
6 |
203 | 7 .PHONY: all |
8 all: ps | |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
9 |
203 | 10 .PHONY: ps |
11 ps: img | |
12 latexmk -f -ps $(DOC) | |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
13 |
203 | 14 .PHONY: pdf |
15 pdf: img | |
16 latexmk -f -pdfps $(DOC) | |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
17 |
203 | 18 .PHONY: clean |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
19 clean: |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
20 latexmk -c |
54
da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents:
8
diff
changeset
|
21 rm web.* |
203 | 22 cd img ; $(MAKE) clean ; cd - |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
23 |
203 | 24 .PHONY: cover |
169 | 25 cover: |
203 | 26 latexmk -ps -pdfps $(COVER) |
169 | 27 |
203 | 28 .PHONY: img |
205 | 29 img: img/*.pic |
203 | 30 cd img ; $(MAKE) ; cd - |
31 |