annotate thesis/Makefile @ 189:79803ad327ca

reworked general requirements
author meillo@marmaro.de
date Tue, 30 Dec 2008 13:22:21 +0100
parents fa086dbbdf10
children 991400d3b861
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
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 all: pdf
da11c1b9e8cb splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents: 8
diff changeset
7
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
8 pdf:
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
9 latexmk -pdf $(DOC)
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
10
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
11 view: pdf
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
12 xpdf -z page $(DOC).pdf &
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
13
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
14 watch: view
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
15 latexmk -pdf -pvc -pv- $(DOC)
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
16
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
17 clean:
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
18 latexmk -c
54
da11c1b9e8cb splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents: 8
diff changeset
19 rm web.*
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
20
169
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
21 cover:
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
22 latexmk -pdf $(COVER)
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
23
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
24 .PHONY: pdf view watch clean cover