summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--documentation/Fl_Wizard.html7
-rw-r--r--documentation/Makefile11
3 files changed, 9 insertions, 11 deletions
diff --git a/CHANGES b/CHANGES
index 27ce91bab..235361fff 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,8 @@ CHANGES IN FLTK 1.1.0b8
- Fixed the example program makefile - wasn't building
the mandelbrot and shiny demos right.
- Fl::set_font(Fl_Font, Fl_Font) was not implemented.
+ - Fixed the documentation Makefile commands; was not
+ using the fltk.book file for some reason...
CHANGES IN FLTK 1.1.0b7
diff --git a/documentation/Fl_Wizard.html b/documentation/Fl_Wizard.html
index 45b7a42dd..9143eef7d 100644
--- a/documentation/Fl_Wizard.html
+++ b/documentation/Fl_Wizard.html
@@ -1,10 +1,5 @@
<HTML>
-<HEAD>
- <TITLE>Fl_Wizard - ESP Widget Set for FLTK</TITLE>
- <LINK REL="STYLESHEET" TYPE="text/css" HREF="fltk.css">
-</HEAD>
-
-<BODY BGCOLOR="#ccccff">
+<BODY>
<!-- NEW PAGE -->
<H2>class Fl_Wizard</H2>
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 $".
#