22 lines
318 B
Bash
22 lines
318 B
Bash
|
#!/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
|
||
|
make ABooke $1-Morris
|