make install

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@654 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-09-03 13:58:56 +00:00
parent e96ddf25ad
commit c98f04213e
12 changed files with 583 additions and 301 deletions

View File

@@ -42,3 +42,26 @@ ADD_COMPILE=
# include the definitions now
include ../../../../template.mak
install::
@echo "Installing library files and headers for libwx_opengl_gtk.."
@echo " Creating directory.."
@$(WXBASEDIR)/mkinstalldirs /usr/local/include/wx_opengl
@echo " Copying headers from /include/wx"
@cd $(WXBASEDIR)/utils/glcanvas/src ; \
for f in *.h ; do \
rm -f /usr/local/include/wx_opengl/$$f ; \
$(INSTALL_DATA) $$f /usr/local/include/wx_opengl/$$f ; \
done
@echo " Copying static library files to /usr/local/lib"
@cd $(WXBASEDIR)/lib/$(OS) ; \
for f in libwx_opengl_gtk.a ; do \
rm -f /usr/local/lib/$$f ; \
$(INSTALL_DATA) $$f /usr/local/lib/$$f ; \
done
@echo " Copying shared libraries to /usr/local/lib"
@cd $(WXBASEDIR)/lib/$(OS) ; \
for f in libwx_opengl_gtk.so* ; do \
rm -f /usr/local/lib/$$f ; \
$(INSTALL_PROGRAM) $$f /usr/local/lib/$$f ; \
done