forked from coolharsh55/phd-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
27 lines (20 loc) · 785 Bytes
/
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
DOC_SRC:=main.tex
DOC_TARGET:=$(DOC_SRC:.tex=.pdf)
BIB_FILES:=$(shell find -iname '*.bib')
.PHONY: all clean
all: $(DOC_TARGET)
# -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.
$(DOC_TARGET): $(DOC_SRC) $(BIB_FILES)
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode -shell-escape" -use-make $<
draft:
pdflatex -interaction=nonstopmode -shell-escape $(DOC_SRC)
test:
pdflatex -shell-escape $(DOC_SRC)
clean:
latexmk -C $(DOC_SRC)
xclean:
sh ./clean.sh