view thesis/Makefile @ 60:fe68825fee28

added new references; wrote introductions about sendmail and qmail
author meillo@marmaro.de
date Sat, 18 Oct 2008 12:07:28 +0200
parents da11c1b9e8cb
children fa086dbbdf10
line wrap: on
line source

# makefile using `latexmk'

DOC=thesis

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.*

.PHONY: pdf view watch clean