14 lines
No EOL
187 B
Makefile
14 lines
No EOL
187 B
Makefile
# Makefile for presentation
|
|
|
|
.PHONY: presentation.pdf all clean
|
|
|
|
all: presentation.pdf
|
|
|
|
presentation.pdf: presentation.tex
|
|
latexmk -use-make $<
|
|
|
|
cleanall:
|
|
latexmk -C
|
|
|
|
clean:
|
|
latexmk -c
|