Makefile
583 Bytes
all: styles/materialize.css styles/flashier.css fixjsstyle
JS_SOURCES = config.js $(wildcard scripts/*Controller.js) $(wildcard scripts/*Directive.js) $(wildcard scripts/*Service.js)
print-%:
@echo '$*=$($*)'
styles/materialize.css: .PHONY
sassc sass/materialize.scss styles/materialize.css
styles/flashier.css: sass/flashier.scss
sassc sass/flashier.scss styles/flashier.css
fixjsstyle: .PHONY
$(foreach sourcefile,$(JS_SOURCES),expand $(sourcefile) | sponge $(sourcefile);)
fixjsstyle --flagfile gjslint.conf config.js scripts/*{Controller,Directive,Service}.js
.PHONY: