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
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
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
7 .PHONY: all
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
8 all: ps
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
9
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
10 .PHONY: ps
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
11 ps: img
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
12 latexmk -f -ps $(DOC)
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
13
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
14 .PHONY: pdf
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
15 pdf: img
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
16 latexmk -f -pdfps $(DOC)
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
17
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
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
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
22 cd img ; $(MAKE) clean ; cd -
8
1d35768e1643 first prototype of thesis (with some sample content)
meillo@marmaro.de
parents:
diff changeset
23
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
24 .PHONY: cover
169
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
25 cover:
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
26 latexmk -ps -pdfps $(COVER)
169
fa086dbbdf10 split cover from main document
meillo@marmaro.de
parents: 54
diff changeset
27
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
28 .PHONY: img
205
aa14d1925151 added new pictures; updated makefile
meillo@marmaro.de
parents: 203
diff changeset
29 img: img/*.pic
203
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
30 cd img ; $(MAKE) ; cd -
991400d3b861 updated Makefile and .hgignore
meillo@marmaro.de
parents: 169
diff changeset
31