summaryrefslogtreecommitdiff
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-14 20:13:36 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-14 20:13:36 +0000
commit40750fb3528c4bec60ee1dfe4f6c06186bec39fd (patch)
treee3536cff3ae365d76200286d081d690db4bbad3c /documentation/Makefile
parent4982fb29a07d489327e8ed037c840b6afcc698ea (diff)
Documentation makefile should be using --batch option, not list all
HTML files on a single line. Fl_Wizard.html still had a title and background color. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1847 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index 610a676a2..0f7b822e0 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.9.2.10.2.4 2001/11/28 20:43:44 easysw Exp $"
+# "$Id: Makefile,v 1.9.2.10.2.5 2001/12/14 20:13:36 easysw Exp $"
#
# Documentation makefile for the Fast Light Tool Kit (FLTK).
#
@@ -189,17 +189,18 @@ fltk.d/index.html: $(HTMLFILES)
echo "Generating HTML documentation..."
-mkdir fltk.d
-rm -f fltk.d/*
- $(HTMLDOC) -d fltk.d -t html --verbose --toclevels 2 --bodycolor white --titleimage FL.gif $(HTMLFILES)
+ $(HTMLDOC) --verbose --batch fltk.book -d fltk.d -t html
fltk.ps: $(HTMLFILES)
echo "Generating PostScript documentation..."
- $(HTMLDOC) -f fltk.ps --jpeg --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES)
+ rm -f fltk.ps
+ $(HTMLDOC) --verbose --batch fltk.book -f fltk.ps
fltk.pdf: $(HTMLFILES)
echo "Generating PDF documentation..."
rm -f fltk.pdf
- $(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES)
+ $(HTMLDOC) --verbose --batch fltk.book -f fltk.pdf
#
-# End of "$Id: Makefile,v 1.9.2.10.2.4 2001/11/28 20:43:44 easysw Exp $".
+# End of "$Id: Makefile,v 1.9.2.10.2.5 2001/12/14 20:13:36 easysw Exp $".
#