2021-03-09 07:57:39 +00:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
build: theme.css
|
|
|
|
|
|
|
|
%.css: %.scss
|
2021-04-15 13:42:27 +00:00
|
|
|
cd .. \
|
2024-09-22 21:24:30 +00:00
|
|
|
&& npx sass --no-error-css --no-source-map .marp/$<:.marp/$@ \
|
2021-04-15 13:42:27 +00:00
|
|
|
|| ( rm -f .marp/$@ && exit 1 )
|
2021-03-09 07:57:39 +00:00
|
|
|
|
|
|
|
.PHONY: build
|
|
|
|
|
2024-09-22 21:24:30 +00:00
|
|
|
clean:
|
|
|
|
rm -f theme.css
|