2021-03-09 08:57:39 +01:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
build: theme.css
|
|
|
|
|
|
|
|
%.css: %.scss
|
2021-04-15 15:42:27 +02:00
|
|
|
cd .. \
|
2025-03-18 14:23:34 +01:00
|
|
|
&& npx sass --no-error-css --no-source-map --style=expanded .marp/$<:.marp/$@ \
|
2021-04-15 15:42:27 +02:00
|
|
|
|| ( rm -f .marp/$@ && exit 1 )
|
2021-03-09 08:57:39 +01:00
|
|
|
|
|
|
|
.PHONY: build
|
|
|
|
|
2024-09-22 23:24:30 +02:00
|
|
|
clean:
|
|
|
|
rm -f theme.css
|