So this was a lame answer for me so I made a patch that got around the issue.
--- a/src/tools/global/GNUmakefile 2011-02-03 10:27:45.000000000 -0800
+++ b/src/tools/global/GNUmakefile 2011-03-19 22:27:49.499618776 -0700
@@ -68,7 +68,10 @@
$(LIBRARY):
(echo TARGET is $(TARGET); cd ./src; $(MAKE) || exit 1;)
-$(TESTS) %.x: $(LIBRARY)
+%.x: $(LIBRARY)
+ (cd ./testing; $(MAKE) $@ || exit 1;)
+
+$(TESTS): $(LIBRARY)
(cd ./testing; $(MAKE) $@ || exit 1;)
all: $(TESTS)
|