docs/diploma

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 1d35768e1643
children fa086dbbdf10
line source
1 # makefile using `latexmk'
3 DOC=thesis
5 all: pdf
7 pdf:
8 latexmk -pdf $(DOC)
10 view: pdf
11 xpdf -z page $(DOC).pdf &
13 watch: view
14 latexmk -pdf -pvc -pv- $(DOC)
16 clean:
17 latexmk -c
18 rm web.*
20 .PHONY: pdf view watch clean