Makefile (482B)
1 # You want latexmk to *always* run, because make does not have all the info. 2 # Also, include non-file targets in .PHONY so they are run regardless of any 3 # file of the given name existing. 4 .PHONY: resume.pdf all clean 5 6 # The first rule in a Makefile is the one executed by default ("make"). It 7 # should always be the "all" rule, so that "make" and "make all" are identical. 8 all: resume.pdf 9 10 resume.pdf: 11 latexmk -pdf -xelatex -interaction=nonstopmode -use-make 12 13 clean: 14 latexmk -CA