-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
28 lines (20 loc) · 936 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
28
REPORT_FILE=paper.tex
BUILD_NAME=lscvs_2016
DEFAULT_READER=Preview.app
BUILD_DIR=doc
# 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: report
# 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.
report: $(REPORT_FILE)
latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make -jobname=$(BUILD_DIR)/$(BUILD_NAME) $(REPORT_FILE)
read:
# Only for macOS
open -a $(DEFAULT_READER) $(BUILD_DIR)/$(BUILD_NAME).pdf
clean:
find $(BUILD_DIR)/ -type f ! -name '$(BUILD_NAME).pdf' -delete