summaryrefslogtreecommitdiff
path: root/objective-c/include/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'objective-c/include/Makefile')
-rw-r--r--objective-c/include/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/objective-c/include/Makefile b/objective-c/include/Makefile
new file mode 100644
index 00000000000..17d4d14e2fc
--- /dev/null
+++ b/objective-c/include/Makefile
@@ -0,0 +1,21 @@
+# **********************************************************************
+#
+# Copyright (c) 2003-2015 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 = objc
+
+$(EVERYTHING)::
+ @for subdir in $(SUBDIRS); \
+ do \
+ echo "making $@ in $$subdir"; \
+ ( cd $$subdir && $(MAKE) $@ ) || exit 1; \
+ done