This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH: new script gcc/doc/install.texi2html
- To: <gcc-patches at gcc dot gnu dot org>
- Subject: PATCH: new script gcc/doc/install.texi2html
- From: Gerald Pfeifer <pfeifer at dbai dot tuwien dot ac dot at>
- Date: Sun, 3 Jun 2001 13:30:42 +0200 (CEST)
- cc: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>, Mark Mitchell <mark at codesourcery dot com>
This script converts our new install documentation from texinfo format
to HTML (and we'll probably add plain text later as well).
2001-06-03 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* doc/install.texi2html: New script.
Installed on branch and mainline.
Joseph, Mark, can you please add this to gcc_release?
SOURCEDIR=/here/is/checked-out-gcc/doc/
DESTDIR=/here/is/the/tree/to/build/the-tarball-from/
$SOURCEDIR/install.texi2html
is all you should need.
Gerald
--- /dev/null Fri Jan 19 09:35:41 2001
+++ install.texi2html Sun Jun 3 13:19:06 2001
@@ -0,0 +1,30 @@
+#!/bin/sh
+#
+# Convert the GCC install documentation from texinfo format to HTML.
+#
+# $SOURCEDIR and $DESTDIR, resp., refer to the directory containing
+# the texinfo source and the directory to put the HTML version in.
+#
+# (C) 2001 Free Software Foundation
+# Originally by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, June 2001.
+#
+# This script is Free Software, and it can be copied, distributed and
+# modified as defined in the GNU General Public License. A copy of
+# its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
+
+SOURCEDIR=${SOURCEDIR-.}
+DESTDIR=${DESTDIR-HTML}
+
+MAKEINFO=makeinfo
+
+if [ ! -d $DESTDIR ]; then
+ mkdir -p $DESTDIR
+fi
+
+for x in index.html specific.html download.html configure.html \
+ build.html test.html finalinstall.html binaries.html
+do
+ define=`echo $x | sed -e 's/\.//g'`
+ echo "define = $define"
+ $MAKEINFO $SOURCEDIR/install.texi --html -D$define -o$DESTDIR/$x
+done