1
0
Fork 0

test/inc-*.js files will now be recognized by make to rebuild combined file

closure/master
Mike Gerwitz 2011-12-04 19:13:51 -05:00
parent e86ed63fd8
commit f39fc05ae2
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,9 @@ path_perf_test=${path_test}/perf
perf_tests := $(shell find "$(path_perf_test)" -name 'perf-*.js')
src_js := index.js $(wildcard $(path_lib)/*.js)
src_tests := index.js $(shell find "$(path_test)" -name test-* -o -name *Test*)
src_tests := index.js $(shell find "$(path_test)" -name test-* \
-o -name *Test* \
-o -name inc-*.js )
path_doc := ./doc