docs/diploma

view thesis/Makefile @ 203:991400d3b861

updated Makefile and .hgignore
author meillo@marmaro.de
date Thu, 01 Jan 2009 21:32:44 +0100
parents fa086dbbdf10
children aa14d1925151
line source
1 # makefile using `latexmk'
3 DOC=thesis
4 COVER=cover
7 .PHONY: all
8 all: ps
10 .PHONY: ps
11 ps: img
12 latexmk -f -ps $(DOC)
14 .PHONY: pdf
15 pdf: img
16 latexmk -f -pdfps $(DOC)
18 .PHONY: clean
19 clean:
20 latexmk -c
21 rm web.*
22 cd img ; $(MAKE) clean ; cd -
24 .PHONY: cover
25 cover:
26 latexmk -ps -pdfps $(COVER)
28 .PHONY: img
29 img:
30 cd img ; $(MAKE) ; cd -