Update make file

This commit is contained in:
2025-02-26 16:52:15 +01:00
parent 0601798cfb
commit b9ea6643ac
2 changed files with 4 additions and 6 deletions

View File

@@ -23,14 +23,12 @@ FUNCTION_VERSION=$$(cat build/major).$$(cat build/minor).$$(cat build/patch)
all: tarball
.PHONY: css
css: $(CSS_FILES:%=src/css/%)
src/css/%.css: ${SCSS_FILES:%=scss/%}
scss -t compact ${@:src/css%.css=scss/%.scss}:$@
css:
npm run scss
.PHONY: watch_css
watch_css:
while inotifywait -e modify -e move -e create -r scss ; do $(MAKE) css; done
npm run scss:watch
.PHONY: bump_patch bump_minor bump_major
bump_patch: