* doc/install.texi2html: New script.

From-SVN: r42826
This commit is contained in:
Gerald Pfeifer 2001-06-03 14:11:43 +02:00 committed by Gerald Pfeifer
parent 096c33c36a
commit c777a6def9
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-06-03 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* doc/install.texi2html: New script.
2001-06-03 David Edelsohn <edelsohn@gnu.org>
* doc/install.texi: Update AIX information again.

30
gcc/doc/install.texi2html Executable file
View File

@ -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