Mercurial > docs > diploma
annotate thesis/Makefile @ 167:74151e26ba6a
this is the correct message for the last commit
I really hate it when I check in too early or too much by accident!
Maybe I should add a confirmation there to prevent me from doing stupid things.
But now what I checked in with the last commit:
- titlepage became the real titlepage, specifying all important info
- cover became the real cover to be the very first page
- the previous cover became pretitle, and moved between the other two
- my confirmation that I wrote the thesis on my own moved to the appendix
- the abstract and keywords moved to the back of the pretitle
- the copyright information extended
- the market share table is in a temporary state! (Needs verification!)
- some cleanups
Ten small commits instead of this huge one with an afterwards added message
are what I intended ... now I am in a bad mood because of this mess :-(
author | meillo@marmaro.de |
---|---|
date | Fri, 19 Dec 2008 20:36:03 +0100 |
parents | da11c1b9e8cb |
children | fa086dbbdf10 |
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 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
4 |
54
da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents:
8
diff
changeset
|
5 all: pdf |
da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents:
8
diff
changeset
|
6 |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
7 pdf: |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
8 latexmk -pdf $(DOC) |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
9 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
10 view: pdf |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
11 xpdf -z page $(DOC).pdf & |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
12 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
13 watch: view |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
14 latexmk -pdf -pvc -pv- $(DOC) |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
15 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
16 clean: |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
17 latexmk -c |
54
da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
meillo@marmaro.de
parents:
8
diff
changeset
|
18 rm web.* |
8
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
19 |
1d35768e1643
first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff
changeset
|
20 .PHONY: pdf view watch clean |