docs/diploma

view thesis/Makefile @ 409:ca763bd8c809

Added tag final version which I handed in for changeset ee7211546c02
author meillo@marmaro.de
date Wed, 11 Feb 2009 08:55:32 +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 -