view makeAll.sh @ 188:76f18e0a80bd

Have a go at being slightly more intelligent in the cello transposition.
author Jim Hague <jim.hague@acm.org>
date Mon, 04 Feb 2013 13:50:20 +0000
parents 8261dc4d0d0b
children 8f352063f277
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
}

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