Files
paper-template/Makefile
T
2026-05-11 15:17:47 +02:00

13 lines
199 B
Makefile

build:
latexmk -pdf main.tex -outdir=out
mv ./out/main.pdf ./build_output.pdf
watch:
latexmk -pdf -pvc main.tex -outdir=out
clean:
latexmk -c -outdir=out
rm -f build_output.pdf
rm -dr ./out