Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / nodeunit / deps / ejs / Makefile
1
2 SRC = $(shell find lib -name "*.js" -type f)
3 UGLIFY_FLAGS = --no-mangle 
4
5 test:
6         @./node_modules/.bin/expresso test/*.test.js
7
8 ejs.js: $(SRC)
9         @node support/compile.js $^
10
11 ejs.min.js: ejs.js
12         @uglifyjs $(UGLIFY_FLAGS) $< > $@ \
13                 && du ejs.min.js \
14                 && du ejs.js
15
16 clean:
17         rm -f ejs.js
18         rm -f ejs.min.js
19
20 .PHONY: test