diff options
author | Brent Eagles <brent@zeroc.com> | 2007-11-08 13:43:38 -0330 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-11-08 13:43:38 -0330 |
commit | cdacc9935fc762110597710ea20d50da951b0108 (patch) | |
tree | e40b63503f91adfdeae5ee36e94fd9295974841e /Makefile | |
parent | Removed erroneous call to findServantLocator(). (diff) | |
download | ice-cdacc9935fc762110597710ea20d50da951b0108.tar.bz2 ice-cdacc9935fc762110597710ea20d50da951b0108.tar.xz ice-cdacc9935fc762110597710ea20d50da951b0108.zip |
- Adding root makefile for Windows and UNIX.
- Fixup slice makefiles
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000000..bdd42569a7e --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +root_dir = . + +include $(root_dir)/config/Make.rules + +SUBDIRS = slice cpp java cs php py rb + +$(EVERYTHING):: + @for subdir in $(SUBDIRS); \ + do \ + echo "making $@ in $$subdir"; \ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + done |