mirror of
https://github.com/agresdominik/paper-template.git
synced 2026-07-21 16:00:54 +00:00
13 lines
199 B
Makefile
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
|