sorted out a couple of issues with Makefile...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-06-05 01:33:02 +04:00
parent 0cf2a0fafa
commit 3a8e284ba9
2 changed files with 7 additions and 4 deletions

View File

@ -14,12 +14,16 @@
# get all the .less files to process... # get all the .less files to process...
CSS_FILES := $(patsubst %.less,%.css,$(wildcard *.less)) CSS_FILES := $(patsubst %.less,%.css,$(wildcard *.less))
# get files to minify...
JS_FILES := $(patsubst %.js,%.min.js,$(wildcard *.js)) JS_FILES := $(patsubst %.js,%.min.js,$(wildcard *.js))
minify: $(JS_FILES) all: css
all: $(CSS_FILES) css: $(CSS_FILES)
minify: $(JS_FILES)
clean: clean:
@rm -f $(CSS_FILES) @rm -f $(CSS_FILES)
@rm -f $(JS_FILES)

View File

@ -216,8 +216,7 @@ body {
transform: rotate(270deg) scaleY(-1) scaleX(-1); transform: rotate(270deg) scaleY(-1) scaleX(-1);
} }
/* default backgrounds */ /* default backgrounds */
/* XXX not sure if we need these... */ /* XXX not sure if we need these...
/*
.image { .image {
background-image: url(images/loading.gif); background-image: url(images/loading.gif);
} }