docs/diploma
view thesis/Makefile @ 182:e35c7962d84f
wrote about spool file and permissions
author | meillo@marmaro.de |
---|---|
date | Sun, 28 Dec 2008 18:50:23 +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