docs/diploma

view thesis/Makefile @ 16:f4467c5f4bd0

added SLOC count of MTAs
author meillo@marmaro.de
date Thu, 25 Sep 2008 16:34:42 +0200
parents
children da11c1b9e8cb
line source
1 # makefile using `latexmk'
3 DOC=thesis
5 pdf:
6 latexmk -pdf $(DOC)
8 view: pdf
9 xpdf -z page $(DOC).pdf &
11 watch: view
12 latexmk -pdf -pvc -pv- $(DOC)
14 clean:
15 latexmk -c
17 .PHONY: pdf view watch clean