diff --git a/ui/Makefile b/ui/Makefile index 971bfa44..a114e8ab 100755 --- a/ui/Makefile +++ b/ui/Makefile @@ -14,12 +14,16 @@ # get all the .less files to process... CSS_FILES := $(patsubst %.less,%.css,$(wildcard *.less)) +# get files to minify... JS_FILES := $(patsubst %.js,%.min.js,$(wildcard *.js)) -minify: $(JS_FILES) +all: css -all: $(CSS_FILES) +css: $(CSS_FILES) + +minify: $(JS_FILES) clean: @rm -f $(CSS_FILES) + @rm -f $(JS_FILES) diff --git a/ui/layout.css b/ui/layout.css index c3ea45e7..fad98392 100644 --- a/ui/layout.css +++ b/ui/layout.css @@ -216,8 +216,7 @@ body { transform: rotate(270deg) scaleY(-1) scaleX(-1); } /* default backgrounds */ -/* XXX not sure if we need these... */ -/* +/* XXX not sure if we need these... .image { background-image: url(images/loading.gif); }