14 lines
202 B
Makefile
14 lines
202 B
Makefile
default: slides.html
|
|
|
|
pdf: slides.pdf
|
|
|
|
distclean:
|
|
rm -f slides.html slides.pdf
|
|
|
|
%.html: %.md
|
|
marp --allow-local-files -o $@ $<
|
|
|
|
%.pdf: %.md
|
|
marp --allow-local-files --pdf -o $@ $<
|
|
|
|
.PHONY: distclean
|