12 lines
260 B
Makefile
12 lines
260 B
Makefile
COMPILER=xelatex
|
|
TARGET=slides
|
|
|
|
all:
|
|
${COMPILER} -shell-escape ${TARGET}
|
|
${COMPILER} -shell-escape ${TARGET}
|
|
make cleanup
|
|
|
|
cleanup:
|
|
rm ${TARGET}.aux ${TARGET}.log ${TARGET}.nav ${TARGET}.out ${TARGET}.snm ${TARGET}.toc ${TARGET}.vrb
|
|
rm -r _minted-slides/
|