Skip to content

Instantly share code, notes, and snippets.

@xinhaoyuan
Created December 18, 2016 17:43
Show Gist options
  • Save xinhaoyuan/e986aca1332ab6b345b854bf57300643 to your computer and use it in GitHub Desktop.
Save xinhaoyuan/e986aca1332ab6b345b854bf57300643 to your computer and use it in GitHub Desktop.
makefile for xelatex document
.PHONY: all clean
-include dep.mk
OUT ?= out
dep.mk:
@latexmk -silent -xelatex -dependents main.tex -MF dep.mk -outdir=${OUT}
clean:
@latexmk -silent -C -outdir=${OUT}
@rm dep.mk
out/main.pdf:
latexmk -xelatex main.tex -outdir=out
all: out/main.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment