Mercurial > docs > diploma
annotate thesis/Makefile @ 277:8a25b6262497
minor changes; added todos
author | meillo@marmaro.de |
---|---|
date | Thu, 15 Jan 2009 15:44:31 +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 |