From a36a69e1ff70a26052edf7c1ed69bd841202d290 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 20 Oct 2011 22:58:47 -0400 Subject: [PATCH] Makefile now recognizes all tests for rebuild --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6247746..013e76a 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ 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 $(wildcard $(path_test)/test-*) +src_tests := index.js $(shell find "$(path_test)" -name test-* -o -name *Test*) path_doc := ./doc