diff options
Diffstat (limited to 'misc/flot/Makefile')
-rw-r--r-- | misc/flot/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/misc/flot/Makefile b/misc/flot/Makefile new file mode 100644 index 0000000..2e070d0 --- /dev/null +++ b/misc/flot/Makefile @@ -0,0 +1,12 @@ +# Makefile for generating minified files + +.PHONY: all + +# we cheat and process all .js files instead of an exhaustive list +all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) + +%.min.js: %.js + yui-compressor $< -o $@ + +test: + ./node_modules/.bin/jshint *jquery.flot.js |