mirror of
https://github.com/vale981/bachelor_thesis
synced 2025-03-06 10:01:40 -05:00
10 lines
194 B
Makefile
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)/*
|