view thesis/Makefile @ 105:9c6a6c210e92

just commit it now: ... lots of changes, rearranges and new text in market analysis
author meillo@marmaro.de
date Thu, 20 Nov 2008 21:14:24 +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