Skip to content

Commit a822425

Browse files
committed
Makefile to standardize how SCSS is compiled.
1 parent 4601d4d commit a822425

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SASSOPTS=--scss --style expanded
2+
3+
default: generate
4+
5+
generate:
6+
sass --update ${SASSOPTS} .
7+
8+
force:
9+
sass --update ${SASSOPTS} --force .
10+
11+
watch:
12+
sass --watch ${SASSOPTS} .

0 commit comments

Comments
 (0)