view makeAll.sh @ 434:1009b89a0893 build-default-188

Correct run in Captain Lanoe. All the dots I can find for this - and my ears - suggest that the second/fifth bars go gfed not gfdd.
author Jim Hague <jim.hague@acm.org>
date Mon, 14 Oct 2013 21:41:28 +0100
parents 583c06d0e9ef
children ef0d66742e01
line wrap: on
line source

#!/bin/bash
#
# Build all forms of the Booke.

if [ $# != 1 ]; then
    echo "Usage: makeAll.sh <book dir name>"
    exit 1
fi

makeABooke()
{
    ./makeGraphics.sh "$1"
    ./makeBookeTunePages.sh "$1"
    ./makeBooke.sh "$1" A4
    ./makeBooke.sh "$1" A5
    ./makeBooklet.sh "$1"
    ./makeBooke.sh "$1" Nook
    ./makeWebGraphics.sh "$1"
    ./makeWebAudio.sh "$1"
    ./makeWeb.sh "$1" "$1" "$2"
}

makeATransposedBooke()
{
    ./makeGraphics.sh "$1"
    ./makeBookeTunePages.sh "$1"
    ./makeBooke.sh "$1" A4
    ./makeBooke.sh "$1" A5
    ./makeBooklet.sh "$1"
    ./makeBooke.sh "$1" Nook
    ./makeWebGraphics.sh "$1"
    ./makeWeb.sh "$1" "$2" "$3"
}

makeABooke $1

./makeCello.sh $1
makeATransposedBooke $1-Cello $1 cello

./makeHornInF.sh $1
makeATransposedBooke $1-HornInF $1 "horn in F"