summaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parentminor fixes for CHANGES (diff)
downloadice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.bz2
ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.xz
ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.zip
minor fixes to makefiles
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 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;