12 lines
171 B
Makefile
12 lines
171 B
Makefile
|
|
all: build
|
|
|
|
build: theme.css
|
|
|
|
%.css: %.scss
|
|
cd .. \
|
|
&& npx node-sass --output-style compressed .marp/$< > .marp/$@ \
|
|
|| ( rm -f .marp/$@ && exit 1 )
|
|
|
|
.PHONY: build
|
|
|