From f39fc05ae2ef2f6f3dbdd8a52942fe1fc359ed87 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 4 Dec 2011 19:13:51 -0500 Subject: [PATCH] test/inc-*.js files will now be recognized by make to rebuild combined file --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5fdb35d..9dfb2f8 100644 --- a/Makefile +++ b/Makefile @@ -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