Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions 00-prologue/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# 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: course-notes-0.pdf

# 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: course-notes-0.pdf

# MAIN LATEXMK RULE

CC = latexmk

# -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.
CFLAGS = -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make

course-notes-0.pdf: course-notes-0.tex
$(CC) $(CFLAGS) course-notes-0.tex

# latexmk
# -CA clean up (remove) all nonessential files.
clean:
$(CC) -CA
Loading