9 lines
93 B
Makefile
9 lines
93 B
Makefile
|
all: document.pdf
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
latexmk -pdf $<
|
||
|
|
||
|
clean:
|
||
|
latexmk -C
|
||
|
rm -rf *.bbl *.run.xml
|