Mercurial > dottes
comparison makeAll.sh @ 181:6a0bdabfb255
Add a A4 portrait book with multiple tunes per page.
Also add a script to make all variants of a single book, and
look for <tune name>.tex files, and if one exists add it after the tune.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Sat, 26 Jan 2013 13:47:01 +0000 |
parents | |
children | 8261dc4d0d0b |
comparison
equal
deleted
inserted
replaced
180:3acc7c6ba9fc | 181:6a0bdabfb255 |
---|---|
1 #!/bin/bash | |
2 # | |
3 # Build all forms of the Booke. | |
4 | |
5 if [ $# != 1 ]; then | |
6 echo "Usage: makeAll.sh <book dir name>" | |
7 exit 1 | |
8 fi | |
9 | |
10 makeABooke() | |
11 { | |
12 ./makeGraphics.sh $1 | |
13 ./makeBookeA5.sh $1 | |
14 ./makeBookeA4.sh $1 | |
15 ./makeWebItems.sh $1 | |
16 ./makeWeb.sh $1 | |
17 } | |
18 | |
19 makeABooke $1 | |
20 ./makeCello.sh $1 | |
21 make ABooke $1-Morris |