-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
60 lines (44 loc) · 2.08 KB
/
Makefile
File metadata and controls
60 lines (44 loc) · 2.08 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# You want latexmk to *always* run, because make does not have all the info.
# Also, include non-file targets in .PHONY so they are run regardless of any
# file of the given name existing.
.PHONY: thesis.pdf all clean show
# The first rule in a Makefile is the one executed by default ("make"). It
# should always be the "all" rule, so that "make" and "make all" are identical.
all: thesis.pdf
# book.pdf
# CUSTOM BUILD RULES
# In case you didn't know, '$@' is a variable holding the name of the target,
# and '$<' is a variable holding the (first) dependency of a rule.
# "raw2tex" and "dat2tex" are just placeholders for whatever custom steps
# you might have.
%.tex: %.raw
./raw2tex $< > $@
%.tex: %.dat
./dat2tex $< > $@
# MAIN LATEXMK RULE
# -pdf tells latexmk to generate PDF directly (instead of DVI).
# -pdflatex="" tells latexmk to call a specific backend with specific options.
# -use-make tells latexmk to call make for generating missing files.
# -interactive=nonstopmode keeps the pdflatex backend from stopping at a
# missing file reference and interactively asking you for an alternative.
export TEXINPUTS:=./texmf//:packages//:${TEXINPUTS}
thesis thesis.pdf: thesis.tex
latexmk -pdf \
-jobname=build/thesis \
-pdflatex="lualatex --file-line-error --halt-on-error --shell-escape --synctex=1 %O '\input{%S}'" thesis.tex
force: thesis.tex
latexmk -pdf -g \
-jobname=build/thesis \
-pdflatex="lualatex --file-line-error --halt-on-error --shell-escape --synctex=1 %O '\input{%S}'" thesis.tex
book book.pdf: thesis.tex
latexmk -pdf \
-jobname=build/book \
-pdflatex="lualatex --file-line-error --halt-on-error --shell-escape --synctex=1" thesis.tex
thesis.acr: thesis.aux
makeglossaries thesis
clean:
latexmk -C
rm -f thesis.aux thesis.bbl thesis.bcf thesis.blg thesis.fls thesis.lof thesis.log thesis.lot thesis.out thesis.pdf thesis.run.xml thesis.synctex.gz thesis.toc
rm -f book.aux book.bbl book.bcf book.blg book.fls book.lof book.log book.lot book.out book.pdf book.run.xml book.synctex.gz book.toc book.fdb_latexmk
show: thesis.pdf
zathura thesis.pdf &