11 lines
115 B
Makefile
11 lines
115 B
Makefile
|
all: document.pdf
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
latexmk -pdf $<
|
||
|
|
||
|
clean:
|
||
|
${RM} document.pdf
|
||
|
${RM} *.bbl
|
||
|
${RM} *.blg
|
||
|
latexmk -C
|