+install::
+ @echo " "
+ @echo "Installing library files and headers.."
+ @echo " "
+ @echo " Creating directories.."
+ @$(WXBASEDIR)/mkinstalldirs \
+ $(includedir)/wx \
+ $(includedir)/wx/gtk \
+ $(includedir)/wx/motif \
+ $(includedir)/wx/common \
+ $(includedir)/wx/generic \
+ $(includedir)/wx/protocol \
+ $(libdir)/wx/include/wx/gtk \
+ $(libdir) \
+ $(bindir)
+ @echo " Copying headers from /include/wx"
+ @cd $(WXBASEDIR)/include/wx ; \
+ $(INSTALL) -d $(includedir)/wx ; \
+ for f in *.h ; do \
+ rm -f $(includedir)/wx/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
+ done ; \
+ for f in *.cpp ; do \
+ rm -f $(includedir)/wx/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
+ done
+ @if test "@TOOLKIT@" = "GTK" ; then \
+ echo " Copying headers from /include/wx/gtk" ; \
+ cd $(WXBASEDIR)/include/wx/gtk ; \
+ $(INSTALL) -d $(includedir)/wx/gtk ; \
+ for f in *.h ; do \
+ rm -f $(includedir)/wx/gtk/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/gtk/$$f ; \
+ done ; \
+ fi
+ @if test "@TOOLKIT@" = "MOTIF" ; then \
+ echo " Copying headers from /include/wx/motif" ; \
+ cd $(WXBASEDIR)/include/wx/motif ; \
+ $(INSTALL) -d $(includedir)/wx/motif ; \
+ for f in *.h ; do \
+ rm -f $(includedir)/wx/motif/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/motif/$$f ; \
+ done ; \
+ fi
+ @echo " Copying headers from /include/wx/generic"
+ @cd $(WXBASEDIR)/include/wx/generic ; \
+ $(INSTALL) -d $(includedir)/wx/generic ; \
+ for f in *.h ; do \
+ rm -f $(includedir)/wx/generic/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/generic/$$f ; \
+ done
+ @echo " Copying headers from /include/wx/protocol"
+ @cd $(WXBASEDIR)/include/wx/protocol ; \
+ for f in *.h ; do \
+ rm -f $(includedir)/wx/protocol/$$f ; \
+ $(INSTALL_DATA) $$f $(includedir)/wx/protocol/$$f ; \
+ done
+ @echo " Moving setup.h to library path"
+ @if test "@TOOLKIT@" = "GTK" ; then \
+ cd $(WXBASEDIR)/src ; \
+ $(INSTALL) -d $(libdir)/wx/include/wx/gtk ; \
+ mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ; \
+ fi
+ @if test "@TOOLKIT@" = "MOTIF" ; then \
+ cd $(WXBASEDIR)/src ; \
+ $(INSTALL) -d $(libdir)/wx/include/wx/motif ; \
+ mv $(includedir)/wx/motif/setup.h $(libdir)/wx/include/wx/motif/setup.h ; \
+ fi
+ @echo " Copying wx-config"
+ @cd $(WXBASEDIR)/src ; \
+ $(INSTALL) -d $(bindir) ; \
+ rm -f $(bindir)/wx-config ; \
+ $(INSTALL_PROGRAM) $(WXBASEDIR)/wx-config $(bindir)/wx-config
+ @echo " Copying static library"
+ @cd $(WXBASEDIR)/src ; \
+ rm -f $(libdir)/$(STATIC_LIBRARY) ; \
+ $(INSTALL_DATA) $(WXBASEDIR)/lib/$(OS)/$(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
+ @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
+ echo " Copying shared library" ; \
+ rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
+ $(INSTALL_PROGRAM) $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
+ $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
+ $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so ; \
+ echo " " ; \
+ echo " You may have to run ldconfig!" ; \
+ echo " " ; \
+ fi
+ @echo " "
+ @echo "Installation complete."
+ @echo " "
+