"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
This commit is contained in:
Michael R Sweet 2001-12-10 14:46:04 +00:00
parent 633555bb42
commit 6905f61c2c
2 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,9 @@
CHANGES IN FLTK 1.1.0b7
- Mac Cursor Shapes added
- More documentation updates...
- "make uninstall" didn't uninstall the static OpenGL
widget library.
- Mac cursor shapes added...
- Fl_Text_Display would lockup when all text was
deleted; for example, when running the editor
demo, you couldn't load a second file.

View File

@ -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 $".
#