diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-10 14:46:04 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-10 14:46:04 +0000 |
| commit | 6905f61c2c00bd2e6777b0ab9d843fbe1a46dcc4 (patch) | |
| tree | e88ba663fb61522400c41223c20dca0b122b1007 /src | |
| parent | 633555bb422e4a017c0687e24f1c8c6ce0b8a76c (diff) | |
"make uninstall" didn't uninstall the OpenGL library.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1831 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 2b3d3635b..4592154a6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.18.2.14.2.25 2001/12/09 20:26:24 easysw Exp $" +# "$Id: Makefile,v 1.18.2.14.2.26 2001/12/10 14:46:04 easysw Exp $" # # Library makefile for the Fast Light Tool Kit (FLTK). # @@ -331,6 +331,9 @@ uninstall: if test x$(DSONAME) = xlibfltk_s.a; then\ rm -f $(libdir)/libfltk_s.a;\ fi + if test x$(GLLIBNAME) != x; then\ + rm -f $(libdir)/$(GLLIBNAME);\ + fi if test x$(GLDSONAME) = xlibfltk_gl.so.1.1; then\ rm -f $(libdir)/libfltk_gl.so*;\ fi @@ -343,5 +346,5 @@ uninstall: # -# End of "$Id: Makefile,v 1.18.2.14.2.25 2001/12/09 20:26:24 easysw Exp $". +# End of "$Id: Makefile,v 1.18.2.14.2.26 2001/12/10 14:46:04 easysw Exp $". # |
