-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (26 loc) · 780 Bytes
/
Makefile
File metadata and controls
31 lines (26 loc) · 780 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
31
# for minted, pygmentize is required: module load python/anaconda3
# the latex file are not included as make dependencies because latexmk
# is better at detecting dependency changes than make
dissertation:
latexmk -pdf -shell-escape eric_john_berquist_etd.tex
# This is useful for making all the things Pitt requires for its
# administrative submission stuff.
front_matter:
latexmk -pdf -shell-escape abstract.tex
latexmk -pdf -shell-escape preface.tex
latexmk -pdf -shell-escape introduction.tex
latexmk -pdf administrative_abstract.tex
latexmk -pdf title_page.tex
library: library.bib
latexmk -pdf test_bibliography.tex
clean:
latexmk -c
rm -f *.bbl
rm -f *.etd
rm -f *.loa
rm -f *.lol
rm -f *.pyg
rm -f *.run.xml
rm -f *.stp
rm -f *.xdv
rm -rf ./_minted*