view thesis/Makefile @ 402:e57129f57faa

finished the indexing in a huge last effort
author meillo@marmaro.de
date Sun, 08 Feb 2009 22:51:42 +0100
parents 13e630c5a44d
children
line wrap: on
line source

# makefile using `latexmk'

DOC=thesis
COVER=cover


.PHONY: all
all: ps

.PHONY: ps
ps: img
	latexmk -f -ps $(DOC)

.PHONY: pdf
pdf: img
	latexmk -f -pdfps $(DOC)

.PHONY: clean
clean:
	latexmk -c
	rm web.*
	cd fig ; $(MAKE) clean ; cd -

.PHONY: cover
cover:
	latexmk -ps -pdfps $(COVER)

.PHONY: img
img: fig/*.pic
	cd fig ; $(MAKE) ; cd -