Mercurial > docs > diploma
comparison thesis/Makefile @ 54:da11c1b9e8cb
splitted bib into 2 parts: books and web (using multibib)
author | meillo@marmaro.de |
---|---|
date | Wed, 15 Oct 2008 22:53:19 +0200 |
parents | 1d35768e1643 |
children | fa086dbbdf10 |
comparison
equal
deleted
inserted
replaced
53:7a453fce0961 | 54:da11c1b9e8cb |
---|---|
1 # makefile using `latexmk' | 1 # makefile using `latexmk' |
2 | 2 |
3 DOC=thesis | 3 DOC=thesis |
4 | |
5 all: pdf | |
4 | 6 |
5 pdf: | 7 pdf: |
6 latexmk -pdf $(DOC) | 8 latexmk -pdf $(DOC) |
7 | 9 |
8 view: pdf | 10 view: pdf |
11 watch: view | 13 watch: view |
12 latexmk -pdf -pvc -pv- $(DOC) | 14 latexmk -pdf -pvc -pv- $(DOC) |
13 | 15 |
14 clean: | 16 clean: |
15 latexmk -c | 17 latexmk -c |
18 rm web.* | |
16 | 19 |
17 .PHONY: pdf view watch clean | 20 .PHONY: pdf view watch clean |