]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/install.texi2html
v850.md (casesi): Generate LABEL_REF with Pmode.
[thirdparty/gcc.git] / gcc / doc / install.texi2html
CommitLineData
c777a6de
GP
1#!/bin/sh
2#
3# Convert the GCC install documentation from texinfo format to HTML.
4#
5# $SOURCEDIR and $DESTDIR, resp., refer to the directory containing
6# the texinfo source and the directory to put the HTML version in.
7#
8# (C) 2001 Free Software Foundation
9# Originally by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, June 2001.
10#
11# This script is Free Software, and it can be copied, distributed and
12# modified as defined in the GNU General Public License. A copy of
13# its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
14
15SOURCEDIR=${SOURCEDIR-.}
16DESTDIR=${DESTDIR-HTML}
17
f8c17551 18MAKEINFO=${MAKEINFO-makeinfo}
c777a6de
GP
19
20if [ ! -d $DESTDIR ]; then
21 mkdir -p $DESTDIR
22fi
23
24for x in index.html specific.html download.html configure.html \
25 build.html test.html finalinstall.html binaries.html
26do
27 define=`echo $x | sed -e 's/\.//g'`
28 echo "define = $define"
29 $MAKEINFO $SOURCEDIR/install.texi --html -D$define -o$DESTDIR/$x
30done