summaryrefslogtreecommitdiff
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2000-12-21 18:15:14 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2000-12-21 18:15:14 +0000
commit421fd3985fa044d05ba50c33307bcaae2a18f5fc (patch)
treed39920c1d512cb7b622d733d54a16416db4de933 /documentation/Makefile
parentf5375b6ab64edbe5e5b017b053fb1385613ceef9 (diff)
Fix to allow Fl.cxx to compile with older C++ compilers (no variable
declaration in while() constructs...) "cp" doesn't always support "-f". git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1350 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 346c1f1a4..c91c7c641 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.9.2.6 2000/06/05 21:20:35 mike Exp $"
+# "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $"
#
# Documentation makefile for the Fast Light Tool Kit (FLTK).
#
@@ -129,8 +129,8 @@ depend:
install:
-mkdir -p $(prefix)/share/doc/fltk
- cp -f $(HTMLFILES) index.html $(prefix)/share/doc/fltk
- cp -f *.gif *.jpg $(prefix)/share/doc/fltk
+ cp $(HTMLFILES) index.html $(prefix)/share/doc/fltk
+ cp *.gif *.jpg $(prefix)/share/doc/fltk
chmod 644 $(prefix)/share/doc/fltk/*
fltk.d/index.html: $(HTMLFILES)
@@ -149,5 +149,5 @@ fltk.pdf: $(HTMLFILES)
$(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES)
#
-# End of "$Id: Makefile,v 1.9.2.6 2000/06/05 21:20:35 mike Exp $".
+# End of "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $".
#