You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
325 B
Makefile
16 lines
325 B
Makefile
# Flot Makefile
|
|
|
|
.PHONY: all
|
|
|
|
# The default behavior is to minify all our JavaScript files
|
|
|
|
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
|
|
|
|
%.min.js: %.js
|
|
yui-compressor $< -o $@
|
|
|
|
# Flot's Travis test suite runs JSHint with the options in .jshintrc
|
|
|
|
test:
|
|
./node_modules/.bin/jshint jquery.flot*.js
|