view doc/manual/buildguide.sh @ 8:ec2b657edf13

Add explicit lint-comment-style fallthrough annotations. GCC now assumes that if you don't have these you're making a mistake, which is annoying. XXX: This changeset updates the AG output files only (by hand) and is XXX: abusive - rebuilding them will erase the change. However, I need XXX: to get things to build before I can try to get AG to issue the XXX: annotations itself, so this seems like a reasonable expedient.
author David A. Holland
date Mon, 30 May 2022 23:51:43 -0400
parents bebb2ba69e1d
children
line wrap: on
line source

#!/bin/sh
# buildguide.sh - build the AG manual
# usage: path-to-doc/manual/buildguide.sh

# "usersguide.ind}" is required to work around a bug in latex
# that still exists as recently as teTeX 3.0.

SRCDIR=`dirname "$0"`

TEXINPUTS=".:${SRCDIR}:"
export TEXINPUTS

trap cleanup INT
cleanup() {
    rm -f usersguide.pdf
    exit 1
}

touch usersguide.ind
rm -f 'usersguide.ind}'
ln -s 'usersguide.ind' 'usersguide.ind}'

dolatex() {
    echo '        [LATEX]   usersguide.tex'
    #pdflatex "$SRCDIR/usersguide.tex"
    pdflatex "\\newcommand{\\nohtml}{1}\\input{$SRCDIR/usersguide.tex}"
}

dolatex
dolatex

echo '        [INDEX]   usersguide.idx'
makeindex usersguide.idx

dolatex
dolatex

rm -f 'usersguide.ind}'