diff options
Diffstat (limited to 'objective-c/include/objc/Glacier2/Makefile')
-rw-r--r-- | objective-c/include/objc/Glacier2/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/objective-c/include/objc/Glacier2/Makefile b/objective-c/include/objc/Glacier2/Makefile new file mode 100644 index 00000000000..320137fd7f6 --- /dev/null +++ b/objective-c/include/objc/Glacier2/Makefile @@ -0,0 +1,26 @@ +# ********************************************************************** +# +# 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 + +install:: + @if test ! -d $(DESTDIR)$(install_includedir)/Glacier2 ; \ + then \ + echo "Creating $(DESTDIR)$(install_includedir)/Glacier2..." ; \ + $(call mkdir,$(DESTDIR)$(install_includedir)/Glacier2) ; \ + fi + + @for i in *.h ; \ + do \ + echo "Installing $$i" ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(install_includedir)/Glacier2/$$i ; \ + chmod a+r $(DESTDIR)$(install_includedir)/Glacier2/$$i ; \ + done |