summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-03-22 15:37:07 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-03-22 15:37:07 +0000
commitfbdaac7a3e51b93bb9628e6f03bfaa6be93fb2a6 (patch)
tree5a8dd9b64e25a36516d8278fb617396d56e37488 /cppe/src
parentAdded initial IceJE tree (diff)
downloadice-fbdaac7a3e51b93bb9628e6f03bfaa6be93fb2a6.tar.bz2
ice-fbdaac7a3e51b93bb9628e6f03bfaa6be93fb2a6.tar.xz
ice-fbdaac7a3e51b93bb9628e6f03bfaa6be93fb2a6.zip
Added initial Ice-E code
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/Makefile22
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