OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [doc/] [install.texi2html] - Diff between revs 284 and 384

Only display areas with differences | Details | Blame | View Log

Rev 284 Rev 384
#!/bin/sh
#!/bin/sh
#
#
# Convert the GCC install documentation from texinfo format to HTML.
# Convert the GCC install documentation from texinfo format to HTML.
#
#
# $SOURCEDIR and $DESTDIR, resp., refer to the directory containing
# $SOURCEDIR and $DESTDIR, resp., refer to the directory containing
# the texinfo source and the directory to put the HTML version in.
# the texinfo source and the directory to put the HTML version in.
#
#
# Copyright (C) 2001, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
# Copyright (C) 2001, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
# Originally by Gerald Pfeifer , June 2001.
# Originally by Gerald Pfeifer , June 2001.
#
#
# This file is part of GCC.
# This file is part of GCC.
#
#
# GCC is free software; you can redistribute it and/or modify it under
# GCC is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 3, or (at your option) any later
# Software Foundation; either version 3, or (at your option) any later
# version.
# version.
#
#
# GCC is distributed in the hope that it will be useful, but WITHOUT ANY
# GCC is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
# for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING3.  If not see
# along with GCC; see the file COPYING3.  If not see
# .
# .
set -e
set -e
SOURCEDIR=${SOURCEDIR-.}
SOURCEDIR=${SOURCEDIR-.}
DESTDIR=${DESTDIR-HTML}
DESTDIR=${DESTDIR-HTML}
MAKEINFO=${MAKEINFO-makeinfo}
MAKEINFO=${MAKEINFO-makeinfo}
if [ ! -d $DESTDIR ]; then
if [ ! -d $DESTDIR ]; then
    mkdir -p $DESTDIR
    mkdir -p $DESTDIR
fi
fi
# Generate gcc-vers.texi.
# Generate gcc-vers.texi.
(
(
   echo "@set version-GCC $(cat $SOURCEDIR/../BASE-VER)"
   echo "@set version-GCC $(cat $SOURCEDIR/../BASE-VER)"
   if [ "$(cat $SOURCEDIR/../DEV-PHASE)" = "experimental" ]; then
   if [ "$(cat $SOURCEDIR/../DEV-PHASE)" = "experimental" ]; then
      echo "@set DEVELOPMENT"
      echo "@set DEVELOPMENT"
   else
   else
      echo "@clear DEVELOPMENT"
      echo "@clear DEVELOPMENT"
   fi
   fi
   echo "@set srcdir $SOURCEDIR/.."
   echo "@set srcdir $SOURCEDIR/.."
) > $DESTDIR/gcc-vers.texi
) > $DESTDIR/gcc-vers.texi
for x in index.html specific.html prerequisites.html download.html configure.html \
for x in index.html specific.html prerequisites.html download.html configure.html \
         build.html test.html finalinstall.html binaries.html old.html \
         build.html test.html finalinstall.html binaries.html old.html \
         gfdl.html
         gfdl.html
do
do
    define=`echo $x | sed -e 's/\.//g'`
    define=`echo $x | sed -e 's/\.//g'`
    echo "define = $define"
    echo "define = $define"
    $MAKEINFO --no-number-sections -I $SOURCEDIR -I $SOURCEDIR/include -I $DESTDIR $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/$x
    $MAKEINFO --no-number-sections -I $SOURCEDIR -I $SOURCEDIR/include -I $DESTDIR $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/$x
done
done
rm $DESTDIR/gcc-vers.texi
rm $DESTDIR/gcc-vers.texi
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.