10 lines
162 B
Text
10 lines
162 B
Text
snippet latex
|
|
TEX := $(wildcard *.tex)
|
|
|
|
$1.pdf: ${TEX}
|
|
pdflatex -jobname=$1 $^
|
|
pdflatex -jobname=$1 $^ # Fixed toc
|
|
|
|
clean:
|
|
rm -rf *.aux *.log *.pdf
|
|
endsnippet
|