Updated shared library code to create symbolic links to .so.1 or .sl.1

files...


git-svn-id: file:///fltk/svn/fltk/trunk@165 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
1998-12-18 13:53:27 +00:00
parent 47e5607d87
commit 13070ee270
2 changed files with 14 additions and 4 deletions
+8 -2
View File
@@ -1,5 +1,5 @@
#
# "$Id: Makefile,v 1.7 1998/11/05 16:04:35 mike Exp $"
# "$Id: Makefile,v 1.8 1998/12/18 13:53:26 mike Exp $"
#
# Top-level makefile for the Fast Light Tool Kit (FLTK).
#
@@ -44,6 +44,12 @@ install: makeinclude
fi;\
(cd $$dir;$(MAKE) install);\
done
@if test "$(LIBNAME)" = libfltk.so.1; then\
ln -s libfltk.so.1 $(libdir)/libfltk.so;\
fi
@if test "$(LIBNAME)" = libfltk.sl.1; then\
ln -s libfltk.sl.1 $(libdir)/libfltk.sl;\
fi
depend: makeinclude
@for dir in $(DIRS); do\
@@ -65,5 +71,5 @@ makeinclude: configure configh.in makeinclude.in
./configure
#
# End of "$Id: Makefile,v 1.7 1998/11/05 16:04:35 mike Exp $".
# End of "$Id: Makefile,v 1.8 1998/12/18 13:53:26 mike Exp $".
#