docs/diploma

view 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 source
1 # makefile using `latexmk'
3 DOC=thesis
5 pdf:
6 latexmk -pdf $(DOC)
8 view: pdf
9 xpdf -z page $(DOC).pdf &
11 watch: view
12 latexmk -pdf -pvc -pv- $(DOC)
14 clean:
15 latexmk -c
17 .PHONY: pdf view watch clean