view thesis/Makefile @ 18:f7aac09c4ebe

added file with addresses of people who worked with masqmail
author meillo@marmaro.de
date Sun, 28 Sep 2008 23:05:37 +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