Add a Makefile for marp

This commit is contained in:
Glenn Y. Rolland 2021-03-09 08:57:39 +01:00
parent 255c6f8e20
commit d664847fdc

11
.marp/Makefile Normal file
View file

@ -0,0 +1,11 @@
all: build
build: theme.css
%.css: %.scss
cd .. && npx node-sass --output-style compressed .marp/$< > .marp/$@
.PHONY: build