summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-06 18:23:29 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-06 18:23:29 +0000
commit2c8bc31971e53eb0172cd29e333fcd867125a029 (patch)
tree00d917f10be7decdf009afbbed2a2126461d4702 /src/Makefile
parent9c758380115f01878036f2985f7f02146e3d860f (diff)
Run $(RANLIB) on installed static libraries, since some OS's (i.e. Darwin)
compare the file modification time against the symbol table time... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1815 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index debe44770..89c5746a4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.18.2.14.2.22 2001/11/28 21:37:35 easysw Exp $"
+# "$Id: Makefile,v 1.18.2.14.2.23 2001/12/06 18:23:29 easysw Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
@@ -243,6 +243,8 @@ install: $(LIBNAME) $(DSONAME) $(GLLIBNAME) $(GLDSONAME)
-mkdir -p $(libdir)
rm -f $(libdir)/$(LIBNAME)
-cp $(LIBNAME) $(GLLIBNAME) $(libdir)
+ $(RANLIB) $(libdir)/$(LIBNAME)
+ $(RANLIB) $(libdir)/$(GLLIBNAME)
if test x$(DSONAME) = xlibfltk.so.1.1; then\
rm -f $(libdir)/libfltk.so*;\
cp libfltk.so.1.1 $(libdir); \
@@ -297,5 +299,5 @@ uninstall:
#
-# End of "$Id: Makefile,v 1.18.2.14.2.22 2001/11/28 21:37:35 easysw Exp $".
+# End of "$Id: Makefile,v 1.18.2.14.2.23 2001/12/06 18:23:29 easysw Exp $".
#