view thesis/Makefile @ 172:5c873e6478ef

wrote about encryption
author meillo@marmaro.de
date Mon, 22 Dec 2008 20:42:33 +0100
parents fa086dbbdf10
children 991400d3b861
line wrap: on
line source

# makefile using `latexmk'

DOC=thesis
COVER=cover

all: pdf

pdf:
	latexmk -pdf $(DOC)

view: pdf
	xpdf -z page $(DOC).pdf &

watch: view
	latexmk -pdf -pvc -pv- $(DOC)

clean:
	latexmk -c
	rm web.*

cover:
	latexmk -pdf $(COVER)

.PHONY: pdf view watch clean cover