12 lines
129 B
Makefile
12 lines
129 B
Makefile
|
all: note.pdf
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
latexmk -f -e '$$max_repeat=10' -pdf $<
|
||
|
|
||
|
clean:
|
||
|
${RM} *.pdf
|
||
|
${RM} *.bbl
|
||
|
${RM} *.blg
|
||
|
|
||
|
latexmk -C
|