mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-30 10:50:08 +00:00
sorted out a couple of issues with Makefile...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
0cf2a0fafa
commit
3a8e284ba9
@ -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)
|
||||||
|
|||||||
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user