view makeAll.sh @ 218:1a9d937b7765

Force Horn in F output to be in treble clef. Some lower tunes with the odd high note ended up in bass clef. This crap horn player doesn't do bass clef.
author Jim Hague <jim.hague@laicatc.com>
date Thu, 21 Feb 2013 07:23:49 +0000
parents a8a46fd79d5c
children 0ef955669a9a
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"
    ./makeBookeA5.sh "$1"
    ./makeBookeA4.sh "$1"
    ./makeWebItems.sh "$1"
    ./makeWeb.sh "$1" "$2"
}

makeABooke $1

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

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