view thesis/Makefile @ 111:8ce014e9d4ed

added list of people to inform about my thesis when finished
author meillo@marmaro.de
date Wed, 26 Nov 2008 09:53:07 +0100
parents da11c1b9e8cb
children fa086dbbdf10
line wrap: on
line source

# makefile using `latexmk'

DOC=thesis

all: pdf

pdf:
	latexmk -pdf $(DOC)

view: pdf
	xpdf -z page $(DOC).pdf &

watch: view
	latexmk -pdf -pvc -pv- $(DOC)

clean:
	latexmk -c
	rm web.*

.PHONY: pdf view watch clean