-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
23 lines (22 loc) · 754 Bytes
/
makefile
File metadata and controls
23 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
paper.pdf: concept.tex conclusions.tex correction.tex discussion.tex functions.tex introduction.tex paper.tex paper.bib
@rm -f paper.{aux,toc,lof,lot}
@echo '---------------------------'
@echo 'First pass pdflatex paper'
@echo '---------------------------'
pdflatex paper
@echo '---------------------------'
@echo 'BiBTeX pass bibtex paper'
@echo '---------------------------'
bibtex paper
@echo '---------------------------'
@echo 'Second pass pdflatex paper'
@echo '---------------------------'
pdflatex paper
@echo '---------------------------'
@echo 'Third pass pdflatex paper'
@echo '---------------------------'
pdflatex paper
clean:
@rm -f paper.pdf paper.log paper.aux
@rm -f *.bbl *.blg *.lof *.cut
@rm -f *.lot *.out *.toc