view thesis/Makefile @ 168:f4efc8bf2909

small changes in layout
author meillo@marmaro.de
date Fri, 19 Dec 2008 23:35:05 +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