|
|
|
|
|
by oso2k
3227 days ago
|
|
You don't need to (specifically) teach make about `@import`. It's another scss file and it (hopefully) should be a part of your SRC list. Yes, having something like `gcc -MMd` would be better but that's sass for you. To fix the `.css.map` issue is simple. You can't use the pattern you've seen for yacc/bison, though. The `$@` var would have both files in it. %.tab.c %.tab.h: %.y
bison -d $<
Instead, simply adjust the pattern to rule to be the functional equivalent: css/%.css : scss/%.scss
sass $<:$@
css/%.css.map : scss/%.scss
@touch $@
|
|