diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/Glacier2/Makefile | 26 | ||||
-rw-r--r-- | cpp/include/Makefile | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/cpp/include/Glacier2/Makefile b/cpp/include/Glacier2/Makefile new file mode 100644 index 00000000000..ec47d5bd99d --- /dev/null +++ b/cpp/include/Glacier2/Makefile @@ -0,0 +1,26 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2004 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 $(install_includedir)/Glacier2 ; \ + then \ + echo "Creating $(install_includedir)/Glacier2..." ; \ + mkdir $(install_includedir)/Glacier2 ; \ + chmod a+rx $(install_includedir)/Glacier2 ; \ + fi + + @for i in *.h ; \ + do \ + echo "Installing $$i" ; \ + $(INSTALL_DATA) $$i $(install_includedir)/Glacier2/$$i ; \ + done diff --git a/cpp/include/Makefile b/cpp/include/Makefile index c3d1799b9b1..816f8b7a036 100644 --- a/cpp/include/Makefile +++ b/cpp/include/Makefile @@ -13,6 +13,7 @@ include $(top_srcdir)/config/Make.rules SUBDIRS = Freeze \ Glacier \ + Glacier2 \ Ice \ IceBox \ IcePack \ |