docs/diploma

view thesis/Makefile @ 169:fa086dbbdf10

split cover from main document
author meillo@marmaro.de
date Fri, 19 Dec 2008 23:35:38 +0100
parents da11c1b9e8cb
children 991400d3b861
line source
1 # makefile using `latexmk'
3 DOC=thesis
4 COVER=cover
6 all: pdf
8 pdf:
9 latexmk -pdf $(DOC)
11 view: pdf
12 xpdf -z page $(DOC).pdf &
14 watch: view
15 latexmk -pdf -pvc -pv- $(DOC)
17 clean:
18 latexmk -c
19 rm web.*
21 cover:
22 latexmk -pdf $(COVER)
24 .PHONY: pdf view watch clean cover