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