File size: 315 Bytes
17dd76d b9a10ad 17dd76d b9a10ad 17dd76d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | DECK := deck.md
THEME := riprap.css
MARP := marp $(DECK) --theme $(THEME) --allow-local-files --html
.PHONY: all pdf html pptx clean
all: pdf html pptx
pdf:
$(MARP) --pdf --output deck.pdf
html:
$(MARP) --output deck.html
pptx:
$(MARP) --pptx --output deck.pptx
clean:
rm -f deck.pdf deck.html deck.pptx
|