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