Mercurial > docs > diploma
diff 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 (2008-09-18) |
parents | |
children | da11c1b9e8cb |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thesis/Makefile Thu Sep 18 23:50:57 2008 +0200 @@ -0,0 +1,17 @@ +# makefile using `latexmk' + +DOC=thesis + +pdf: + latexmk -pdf $(DOC) + +view: pdf + xpdf -z page $(DOC).pdf & + +watch: view + latexmk -pdf -pvc -pv- $(DOC) + +clean: + latexmk -c + +.PHONY: pdf view watch clean