diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-19 13:10:20 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-19 13:10:20 +0000 |
| commit | ae5a281a39f695e8eb1daaff60aa9e095d6a5ee6 (patch) | |
| tree | 69a67cd8ce116f8ea768217278c0c455456f1009 /src/Makefile | |
| parent | 8136dfe6b5f0d1c288d36f496aaa11aa09c31177 (diff) | |
Updated install rules to install files with write permission for the
owner. This isn't necessary for root installs, but is for user-level
installs.
git-svn-id: file:///fltk/svn/fltk/trunk@298 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index d46afe54e..d888a2e5c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.12 1999/02/16 14:01:46 mike Exp $" +# "$Id: Makefile,v 1.13 1999/02/19 13:10:20 mike Exp $" # # Library makefile for the Fast Light Tool Kit (FLTK). # @@ -175,13 +175,13 @@ include makedepend install: ../lib/$(LIBNAME) -mkdir -p $(libdir) -cp ../lib/$(LIBNAME)* $(libdir) - @-chmod a+r,a-w $(libdir)/$(LIBNAME)* + @-chmod a+r,u+w,g-w,o-w $(libdir)/$(LIBNAME)* -mkdir -p $(includedir) -rm -rf $(includedir)/FL $(includedir)/Fl -cp -r ../FL $(includedir) - @-chmod -R a+r,a-w $(includedir)/FL + @-chmod -R a+r,u+w,g-w,o-w $(includedir)/FL -ln -s FL $(includedir)/Fl # -# End of "$Id: Makefile,v 1.12 1999/02/16 14:01:46 mike Exp $". +# End of "$Id: Makefile,v 1.13 1999/02/19 13:10:20 mike Exp $". # |
