9 lines
143 B
Makefile
9 lines
143 B
Makefile
.PHONY: clean bib
|
|
|
|
all: clean bib compile
|
|
|
|
clean:
|
|
rm -rf ./out
|
|
compile:
|
|
marp main.md --theme ./themes/academic.css -o out/presentation.html
|