bachelor_thesis/latex/makefile
2020-03-27 19:34:22 +01:00

10 lines
194 B
Makefile

LATEXMKFLAGS=-pdflua -interaction=nonstopmode --shell-escape
OUTDIR=build
thesis: document.tex
latexmk -output-directory=$(OUTDIR) $(LATEXMKFLAGS) $<
.PHONY: clean
clean:
rm -f $(OUTDIR)/*