mirror of
https://github.com/circify/circ.git
synced 2026-01-13 07:37:59 -05:00
13 lines
308 B
Makefile
13 lines
308 B
Makefile
.PHONY: main.pdf auto clean sync
|
|
main: build/main.pdf
|
|
|
|
build/main.pdf:
|
|
latexmk -pdf -halt-on-error -interaction=nonstopmode -shell-escape main.tex -outdir=build
|
|
|
|
auto:
|
|
latexmk -pvc -pdf -halt-on-error -interaction=nonstopmode -shell-escape main.tex -outdir=build
|
|
|
|
clean:
|
|
latexmk -C main.tex
|
|
rm -rf build
|