about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-24 22:01:58 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-24 22:01:58 -0700
commit06c7e20d0dca426772f9d6201a01b443162ae92c (patch)
tree8ae84e000e44ad9b558d7f60fafa654373052649
parentbe55d12c7855a70654022059b3e553e8eec04978 (diff)
downloadrainbows-06c7e20d0dca426772f9d6201a01b443162ae92c.tar.gz
This makes it easier to filter functionality by model.
-rw-r--r--t/GNUmakefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/GNUmakefile b/t/GNUmakefile
index 0966563..465a68b 100644
--- a/t/GNUmakefile
+++ b/t/GNUmakefile
@@ -35,6 +35,9 @@ t9000-rack-app-pool.sh: MODELS = ThreadPool ThreadSpawn
 $(T):
         $(MAKE) $(foreach m,$(MODELS),$(addprefix $(m).,$@))
 
+$(all_models):
+        $(MAKE) $(filter $@.%,$(MODEL_T))
+
 all:: $(T)
 
 # can't rely on "set -o pipefail" since we don't require bash or ksh93 :<