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