docs/diploma

view thesis/Makefile @ 397:13e630c5a44d

rename img -> fig
author meillo@marmaro.de
date Sat, 07 Feb 2009 22:39:07 +0100
parents aa14d1925151
children
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 fig ; $(MAKE) clean ; cd -
24 .PHONY: cover
25 cover:
26 latexmk -ps -pdfps $(COVER)
28 .PHONY: img
29 img: fig/*.pic
30 cd fig ; $(MAKE) ; cd -