build-pdf: marp src/index.md --allow-local-files -o build/slides.pdf build-pptx: marp src/index.md --allow-local-files -o build/slides.pptx build-html: marp src/index.md --allow-local-files -o build/index.html clean: test -f build/index.html && rm build/index.html || true test -f build/slides.pdf && rm build/slides.pdf || true test -f build/slides.pptx && rm build/slides.pptx || true build: build-html build-pdf build-pptx serve: marp --allow-local-files -w -s ./src