view thesis/Makefile @ 398:40c2c6810f38

added a list of various stuff, just to store it
author meillo@marmaro.de
date Sat, 07 Feb 2009 22:43:07 +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 -