Makefile 321 Bytes
Newer Older
1
# Flot Makefile
2 3 4

.PHONY: all

5 6
# The default behavior is to minify all our JavaScript files

7 8 9
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))

%.min.js: %.js
10
	yui-compressor $< -o $@
11

12 13
# Flot's Travis test suite runs JSHint with the options in .jshintrc

14
test:
15
	./node_modules/.bin/jshint jquery.*.js