resume

Fork of Awesome CV that I've modified for my own use - requires XeLaTex.
git clone git://git.mattfehrenbach.xyz/resume.git
Log | Files | Refs | README | LICENSE

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