diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-06-04 20:57:34 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-06-04 20:57:34 +0000 |
| commit | b61e94a20709739f7b66e5a734693c0db457bbee (patch) | |
| tree | b5563e96130c706b8be7a71bf9a5a13a8f3c1484 | |
| parent | a2b37021e2facffab35ad98e3e3300c7c671e392 (diff) | |
Makefile fixes.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1164 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index 0f24c28d9..d8d3fb8ad 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.18.2.11 2000/05/13 20:03:18 bill Exp $" +# "$Id: Makefile,v 1.18.2.12 2000/06/04 20:57:34 mike Exp $" # # Library makefile for the Fast Light Tool Kit (FLTK). # @@ -184,28 +184,28 @@ install: $(LIBRARY) $(DSONAME) rm -f $(libdir)/libfltk.so*;\ cp libfltk.so.1 $(libdir); \ chmod 755 $(libdir)/libfltk.so.1; \ - ln -s $(libdir)/libfltk.so.1 $(libdir)/libfltk.so;\ + ln -s libfltk.so.1 $(libdir)/libfltk.so;\ fi if test "$(DSONAME)" = libfltk.sl.1; then\ rm -f $(libdir)/libfltk.sl*;\ cp libfltk.sl.1 $(libdir); \ chmod 755 $(libdir)/libfltk.sl.1; \ - ln -s $(libdir)/libfltk.sl.1 $(libdir)/libfltk.sl;\ + ln -s libfltk.sl.1 $(libdir)/libfltk.sl;\ fi echo "Installing include files..." -mkdir -p $(includedir) rm -rf $(includedir)/FL mkdir $(includedir)/FL - cp ../FL/*.[hH] $(includedir) + cp ../FL/*.[hH] $(includedir)/FL -chmod 755 $(includedir)/FL -chmod 644 $(includedir)/FL/* cd $(includedir)/FL;\ for file in *.H; do\ - ln -s $$file `basename $$file H`h";\ + ln -s $$file "`basename $$file H`h";\ done rm -f $(includedir)/Fl ln -s FL $(includedir)/Fl # -# End of "$Id: Makefile,v 1.18.2.11 2000/05/13 20:03:18 bill Exp $". +# End of "$Id: Makefile,v 1.18.2.12 2000/06/04 20:57:34 mike Exp $". # |
