view thesis/Makefile @ 163:5681a18270b5

new content about architecture; some restructuring
author meillo@marmaro.de
date Thu, 18 Dec 2008 13:39:23 +0100 (2008-12-18)
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