view thesis/Makefile @ 21:523e874ccfcb

added weekly reports 2008W38 and 2008W39
author meillo@marmaro.de
date Wed, 01 Oct 2008 10:11:12 +0200
parents 1d35768e1643
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