docs/diploma

view thesis/Makefile @ 205:aa14d1925151

added new pictures; updated makefile
author meillo@marmaro.de
date Sun, 04 Jan 2009 10:05:56 +0100
parents 991400d3b861
children 13e630c5a44d
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: img/*.pic
30 cd img ; $(MAKE) ; cd -