Mercurial > docs > diploma
comparison thesis/Makefile @ 8:1d35768e1643
first prototype of thesis (with some sample content)
author | meillo@marmaro.de |
---|---|
date | Thu, 18 Sep 2008 23:50:57 +0200 |
parents | |
children | da11c1b9e8cb |
comparison
equal
deleted
inserted
replaced
7:aaee5db4a206 | 8:1d35768e1643 |
---|---|
1 # makefile using `latexmk' | |
2 | |
3 DOC=thesis | |
4 | |
5 pdf: | |
6 latexmk -pdf $(DOC) | |
7 | |
8 view: pdf | |
9 xpdf -z page $(DOC).pdf & | |
10 | |
11 watch: view | |
12 latexmk -pdf -pvc -pv- $(DOC) | |
13 | |
14 clean: | |
15 latexmk -c | |
16 | |
17 .PHONY: pdf view watch clean |