diff options
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cppe/src/Makefile b/cppe/src/Makefile new file mode 100644 index 00000000000..6e41f659626 --- /dev/null +++ b/cppe/src/Makefile @@ -0,0 +1,22 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2005 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. +# +# ********************************************************************** + +top_srcdir = .. + +include $(top_srcdir)/config/Make.rules + +SUBDIRS = IceUtil \ + Ice + +$(EVERYTHING):: + @for subdir in $(SUBDIRS); \ + do \ + echo "making $@ in $$subdir"; \ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + done |