15 lines
143 B
Makefile
15 lines
143 B
Makefile
|
|
SCSS=$(wildcard *.scss)
|
|
CSS=$(patsubst %.scss,%.css,$(SCSS))
|
|
|
|
all: build
|
|
|
|
build: $(CSS)
|
|
|
|
clean:
|
|
rm -f $(CSS)
|
|
|
|
%.css: %.scss
|
|
sass $< > $@
|
|
|
|
|