14 lines
187 B
Makefile
14 lines
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
|