diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | include.mk | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ cssprojects ?= default blueview actiontabs goldtype #beautify = yes +#finalize = yes all: $(cssprojects) @@ -4,7 +4,7 @@ cssprojectinfiles = $(foreach file,$(if $1,$(shell find $1 -name '*.scss')),$(if cssprojectoutfiles = $(patsubst %.scss,%.css,$(call cssprojectinfiles,$1)) $(cssprojects): - sass --update --stop-on-error$(if $(beautify), --style expanded)$(if $(always-make), --force) $@ + sass --update --stop-on-error$(if $(beautify), --style expanded)$(if $(finalize),, --debug-info)$(if $(always-make), --force) $@ $(if $(beautify),perl -i -pe 's/ /\t/g' $(call cssprojectoutfiles,$@)) clean:: |