-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (21 loc) · 690 Bytes
/
Makefile
File metadata and controls
30 lines (21 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.PHONY: clean
all: thesis.pdf
pdf: thesis.pdf
fast: *.tex alg/*.tex graphs/*.pdf cmpthesis.cls cmpcover.sty
pdflatex thesis.tex
thesis.pdf: *.tex *.bib alg/*.tex graphs/*.pdf cmpthesis.cls cmpcover.sty
pdflatex thesis.tex
makeglossaries thesis
bibtex thesis
pdflatex thesis.tex
pdflatex thesis.tex
graphs/%.pdf: graphs/%.eps
ps2pdf -dEPSCrop graphs/$*.eps graphs/$*.pdf
graphs/%.eps: sources/graphs/%.dat sources/graphs/%.in
gnuplot sources/graphs/$*.in
sources/graphs/%.dat: sources/graphs/*.mat sources/graphs/prepare.m
matlab -nosplash -nodesktop -r "prepare('$*')"
.PRECIOUS: sources/graphs/%.dat
clean:
-rm thesis.pdf
-rm *.log *.aux *.toc *.idx *.ilg *.ind *.out