-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
41 lines (35 loc) · 1.68 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
.PHONY: all
all: assignment-1.pdf assignment-2.pdf assignment-3.pdf assignment-4.pdf assignment-5.pdf report.pdf
assignment-1.pdf: assignment-1.tex egbib.bib
true | pdflatex -halt-on-error -shell-escape 'assignment-1'
true | bibtex 'assignment-1'
true | pdflatex -halt-on-error -shell-escape 'assignment-1'
true | pdflatex -halt-on-error -shell-escape 'assignment-1'
assignment-2.pdf: assignment-2.tex egbib.bib
true | pdflatex -halt-on-error -shell-escape 'assignment-2'
true | bibtex 'assignment-2'
true | pdflatex -halt-on-error -shell-escape 'assignment-2'
true | pdflatex -halt-on-error -shell-escape 'assignment-2'
assignment-3.pdf: assignment-3.tex egbib.bib
true | pdflatex -halt-on-error -shell-escape 'assignment-3'
true | bibtex 'assignment-3'
true | pdflatex -halt-on-error -shell-escape 'assignment-3'
true | pdflatex -halt-on-error -shell-escape 'assignment-3'
assignment-4.pdf: assignment-4.tex egbib.bib
rm *.bbl *.blg *.brf || true
true | pdflatex -halt-on-error -shell-escape 'assignment-4'
true | bibtex 'assignment-4'
true | pdflatex -halt-on-error -shell-escape 'assignment-4'
true | pdflatex -halt-on-error -shell-escape 'assignment-4'
assignment-5.pdf: assignment-5.tex egbib.bib
rm *.bbl *.blg *.brf || true
true | pdflatex -halt-on-error -shell-escape 'assignment-5'
true | bibtex 'assignment-5'
true | pdflatex -halt-on-error -shell-escape 'assignment-5'
true | pdflatex -halt-on-error -shell-escape 'assignment-5'
report.pdf: report.tex egbib.bib
rm *.bbl *.blg *.brf || true
true | pdflatex -halt-on-error -shell-escape 'report'
true | bibtex 'report'
true | pdflatex -halt-on-error -shell-escape 'report'
true | pdflatex -halt-on-error -shell-escape 'report'