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