10 lines
128 B
Makefile
10 lines
128 B
Makefile
.PHONY: clean distclean
|
|
|
|
theory.pdf: $(wildcard *.tex)
|
|
latexmk -xelatex theory.tex
|
|
|
|
clean:
|
|
latexmk -c
|
|
|
|
distclean:
|
|
latexmk -C
|