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 wrap: on
line source

# 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