]> git.saurik.com Git - wxWidgets.git/blobdiff - src/Makefile.in
no message
[wxWidgets.git] / src / Makefile.in
index 401e958daab032e0128a22a245c635a4a6a79428..5caeef4a469fe69d9db98c3f60e434452b041532 100644 (file)
@@ -18,6 +18,10 @@ RULE=gslib
 # include gtk.inc, qt.inc or motif.inc here
 include @MAKEINCLUDE@
 
 # include gtk.inc, qt.inc or motif.inc here
 include @MAKEINCLUDE@
 
+# determine library names
+STATIC_LIBRARY=lib$(LIB_TARGET).a
+SHARED_LIBRARY=lib$(LIB_TARGET).so.$(LIB_MAJOR).$(LIB_MINOR)
+
 LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @GTK_JOYSTICK@ @UNIX_THREAD@
 
 LIB_C_ALL_SRC=$(LIB_C_SRC) parser.c
 LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @GTK_JOYSTICK@ @UNIX_THREAD@
 
 LIB_C_ALL_SRC=$(LIB_C_SRC) parser.c
@@ -38,6 +42,74 @@ all::
        @if test ! -d gdk_imlib; then mkdir gdk_imlib; fi
        @if test ! -d iodbc; then mkdir iodbc; fi
 
        @if test ! -d gdk_imlib; then mkdir gdk_imlib; fi
        @if test ! -d iodbc; then mkdir iodbc; fi
 
+install::
+       @echo " "
+       @echo "Installing library files and headers.."
+       @echo " "
+       @echo "  Creating directories.."
+       @$(WXBASEDIR)/mkinstalldirs \
+          $(includedir)/wx \
+          $(includedir)/wx/gtk \
+          $(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
+       @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 ;
+       @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"
+       @$(INSTALL) -d $(libdir)/wx/include/wx/gtk ;\
+       mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ;
+       @echo "  Copying wx-config"
+       @cd $(WXBASEDIR) ; \
+         $(INSTALL) -d $(bindir) ;\
+         rm -f $(bindir)/wx-config ; \
+         $(INSTALL_PROGRAM) wx-config $(bindir)/wx-config
+       @echo "  Copying static library"
+       @cd $(WXBASEDIR)/lib/$(OS) ; \
+         rm -f $(libdir)/$(STATIC_LIBRARY) ; \
+         $(INSTALL_DATA) $(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
+       @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
+         echo "  Copying shared library" ; \
+         cd $(WXBASEDIR)/lib/$(OS) ; \
+           rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
+           $(INSTALL_PROGRAM) $(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 " "
+       
 clean::
        $(RM) -rf gtk
        $(RM) -rf qt
 clean::
        $(RM) -rf gtk
        $(RM) -rf qt
@@ -86,4 +158,4 @@ lexer.c: ../common/lexer.l
        @$(RM) lexer.l
 
 clean::
        @$(RM) lexer.l
 
 clean::
-       
\ No newline at end of file
+