summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-03-09 18:33:46 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-03-09 18:33:46 +0000
commit47e91e6c26ee9434b301cebc9c2e3d86721e94a9 (patch)
treeea463cba99904b5f4c788aeed26dc958934845ee /src
parent022e5d90f1e3a6b429f522941729438f5452ee02 (diff)
Added libfltk.a to install rules, so both the shared and static libraries
will get installed. git-svn-id: file:///fltk/svn/fltk/trunk@388 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 05d76777d..2f0a99a71 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.17 1999/03/09 18:32:44 mike Exp $"
+# "$Id: Makefile,v 1.18 1999/03/09 18:33:46 mike Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
@@ -181,6 +181,7 @@ include makedepend
install: ../lib/$(LIBNAME)
-mkdir -p $(libdir)
-cp ../lib/$(LIBNAME)* $(libdir)
+ -cp ../lib/libfltk.a $(libdir)
if test $(LIBNAME) = libfltk.so.1; then\
rm -f $(libdir)/libfltk.so;\
ln -s $(libdir)/libfltk.so.1 $(libdir)/libfltk.so;\
@@ -201,5 +202,5 @@ install: ../lib/$(LIBNAME)
-ln -s FL $(includedir)/Fl
#
-# End of "$Id: Makefile,v 1.17 1999/03/09 18:32:44 mike Exp $".
+# End of "$Id: Makefile,v 1.18 1999/03/09 18:33:46 mike Exp $".
#