d68058a017891a84a13144d98aa9ac001d5b8afe
[bsc-thesis1415.git] / thesis2 / Makefile
1 SHELL:=/bin/bash
2 VERSION:=0.3
3
4 all: thesis
5
6 thesis:
7 latex thesis.tex > log.txt
8 bibtex thesis.aux >> log.txt
9 latex -shell-escape thesis.tex >> log.txt
10 latex thesis.tex >> log.txt
11 dvipdfm thesis.dvi >> log.txt 2>&1
12 mv -v {thesis,mart_thesis_$(VERSION)}.pdf
13
14 clean:
15 rm -vf *.{aux,bbl,blg,dvi,log,out,pdf,toc,dot,ps} log.txt
16