diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-18 13:53:27 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-18 13:53:27 +0000 |
| commit | 13070ee270bcdd9d6eb366e23f0279a7027cc5ca (patch) | |
| tree | 4421bf147268530a91bb94f635775b1dc5f22fbd /Makefile | |
| parent | 47e5607d87c18e9e190f659bb9ee98a5f5da2ac6 (diff) | |
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
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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 $". # |
