comparison 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
comparison
equal deleted inserted replaced
168:f4efc8bf2909 169:fa086dbbdf10
1 # makefile using `latexmk' 1 # makefile using `latexmk'
2 2
3 DOC=thesis 3 DOC=thesis
4 COVER=cover
4 5
5 all: pdf 6 all: pdf
6 7
7 pdf: 8 pdf:
8 latexmk -pdf $(DOC) 9 latexmk -pdf $(DOC)
15 16
16 clean: 17 clean:
17 latexmk -c 18 latexmk -c
18 rm web.* 19 rm web.*
19 20
20 .PHONY: pdf view watch clean 21 cover:
22 latexmk -pdf $(COVER)
23
24 .PHONY: pdf view watch clean cover