summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2010-02-15 10:31:45 -0800
committerMark Spruiell <mes@zeroc.com>2010-02-15 10:31:45 -0800
commit6a88e35ed44d9e9a358e2028db4a5243720e35b4 (patch)
treee4dbed0ae3a8a491a9297f5418699ba176f0932d
parentminor fixes for CHANGES (diff)
downloadice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.bz2
ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.xz
ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.zip
minor fixes to makefiles
-rw-r--r--Makefile7
-rw-r--r--java/Makefile2
2 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ffa1032c11..0a60f1d9c3a 100644
--- a/Makefile
+++ b/Makefile
@@ -40,6 +40,13 @@ install::
( cd $$subdir && $(MAKE) install ) || exit 1; \
done
+test::
+ @for subdir in $(SUBDIRS); \
+ do \
+ echo "making test in $$subdir"; \
+ ( cd $$subdir && $(MAKE) test ) || exit 1; \
+ done
+
cpp::
echo "making all in cpp";
( cd cpp && $(MAKE) all ) || exit 1;
diff --git a/java/Makefile b/java/Makefile
index 919f355a185..d6664125dad 100644
--- a/java/Makefile
+++ b/java/Makefile
@@ -20,5 +20,5 @@ else
ant -emacs -Dprefix=$(prefix) install
endif
-test:
+test::
@python ./allTests.py