-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
42 lines (32 loc) · 1.71 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
42
# Detect appropriate dependencies
CONTENT:= $(shell echo *.tex)
TEXFILE:= $(shell echo ./Chapters/*.tex)
FRONT:= $(shell echo ./Front/*.tex)
BIB:= $(shell echo ./Chapters/*.bib)
FIGS:= $(shell echo ./Figures/chapter*/*.p*)
CHFIGS = *.png *.pdf
# 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: all clean
# 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 : ucdthesis.pdf
# 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.
# -interaction=nonstopmode keeps the pdflatex backend from stopping at a
# missing file reference and interactively asking you for an alternative.
ucdthesis.pdf : $(BIB) ./style/style.tex $(CONTENT) $(TEXFILE) $(FRONT) $(FIGS) ucdthesis.tex
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode " -use-make ucdthesis.tex
abstract.pdf : abstract.tex Chapters/abstract.tex style/style.tex
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode " -use-make $<
# You must have a bibliography file of the same file prefix
# Use a symbolic link if you want to reuse bib file of another chapter
%.pdf : %.tex style/style.tex Chapters/%.bib Chapters/%.tex Figures/%/*\.p*
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode " -use-make $<
# make sure that .aux files are not removed since they tell latex
# if a file has been changed or not!!
clean:
latexmk -CA