diff thesis/Makefile @ 203:991400d3b861

updated Makefile and .hgignore
author meillo@marmaro.de
date Thu, 01 Jan 2009 21:32:44 +0100
parents fa086dbbdf10
children aa14d1925151
line wrap: on
line diff
--- a/thesis/Makefile	Thu Jan 01 21:32:19 2009 +0100
+++ b/thesis/Makefile	Thu Jan 01 21:32:44 2009 +0100
@@ -3,22 +3,29 @@
 DOC=thesis
 COVER=cover
 
-all: pdf
 
-pdf:
-	latexmk -pdf $(DOC)
+.PHONY: all
+all: ps
 
-view: pdf
-	xpdf -z page $(DOC).pdf &
+.PHONY: ps
+ps: img
+	latexmk -f -ps $(DOC)
 
-watch: view
-	latexmk -pdf -pvc -pv- $(DOC)
+.PHONY: pdf
+pdf: img
+	latexmk -f -pdfps $(DOC)
 
+.PHONY: clean
 clean:
 	latexmk -c
 	rm web.*
+	cd img ; $(MAKE) clean ; cd -
 
+.PHONY: cover
 cover:
-	latexmk -pdf $(COVER)
+	latexmk -ps -pdfps $(COVER)
 
-.PHONY: pdf view watch clean cover
+.PHONY: img
+img:
+	cd img ; $(MAKE) ; cd -
+