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
parents
children da11c1b9e8cb
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/thesis/Makefile	Thu Sep 18 23:50:57 2008 +0200
     1.3 @@ -0,0 +1,17 @@
     1.4 +# makefile using `latexmk'
     1.5 +
     1.6 +DOC=thesis
     1.7 +
     1.8 +pdf:
     1.9 +	latexmk -pdf $(DOC)
    1.10 +
    1.11 +view: pdf
    1.12 +	xpdf -z page $(DOC).pdf &
    1.13 +
    1.14 +watch: view
    1.15 +	latexmk -pdf -pvc -pv- $(DOC)
    1.16 +
    1.17 +clean:
    1.18 +	latexmk -c
    1.19 +
    1.20 +.PHONY: pdf view watch clean