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
This commit is contained in:
Michael R Sweet
1999-02-19 13:10:20 +00:00
parent 8136dfe6b5
commit ae5a281a39
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
#
# "$Id: Makefile,v 1.8 1999/01/31 07:43:14 bill Exp $"
# "$Id: Makefile,v 1.9 1999/02/19 13:10:20 mike Exp $"
#
# Fluid makefile for the Fast Light Tool Kit (FLTK).
#
@@ -73,7 +73,7 @@ install: $(PROGRAM)
strip $(PROGRAM)
-mkdir -p $(bindir)
cp $(PROGRAM) $(bindir)/$(PROGRAM)
@chmod a+rx,g-w,o-w $(bindir)/$(PROGRAM)
@chmod a+rx,u+w,g-w,o-w $(bindir)/$(PROGRAM)
uninstall:
-@ rm -f $(bindir)/$(PROGRAM)
@@ -90,5 +90,5 @@ rebuild:
./fluid -c widget_panel.fl
#
# End of "$Id: Makefile,v 1.8 1999/01/31 07:43:14 bill Exp $".
# End of "$Id: Makefile,v 1.9 1999/02/19 13:10:20 mike Exp $".
#