diff options
author | Mark Spruiell <mes@zeroc.com> | 2010-02-15 10:31:45 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2010-02-15 10:31:45 -0800 |
commit | 6a88e35ed44d9e9a358e2028db4a5243720e35b4 (patch) | |
tree | e4dbed0ae3a8a491a9297f5418699ba176f0932d | |
parent | minor fixes for CHANGES (diff) | |
download | ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.bz2 ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.tar.xz ice-6a88e35ed44d9e9a358e2028db4a5243720e35b4.zip |
minor fixes to makefiles
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | java/Makefile | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -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 |