comparison makeAll.sh @ 266:06e140f48543

Revise scripts for building printed Bookes. A lot of stuff was being duplicated between different page size. Consolidate where possible, and in particular put as much into a single source file (dottes.tex) as possible. Making a single Booke is now potentially quicker, as the tune pages don't necessarily have to be regenerate every time.
author Jim Hague <jim.hague@acm.org>
date Wed, 26 Jun 2013 23:37:45 +0100
parents 0ef955669a9a
children 583c06d0e9ef
comparison
equal deleted inserted replaced
265:3e5335396f48 266:06e140f48543
8 fi 8 fi
9 9
10 makeABooke() 10 makeABooke()
11 { 11 {
12 ./makeGraphics.sh "$1" 12 ./makeGraphics.sh "$1"
13 ./makeBookeA5.sh "$1" 13 ./makeBookeTunePages.sh "$1"
14 ./makeBookeA4.sh "$1" 14 ./makeBooke.sh "$1" A4
15 ./makeBooke.sh "$1" A5
16 ./makeBooklet.sh "$1"
15 ./makeWebGraphics.sh "$1" 17 ./makeWebGraphics.sh "$1"
16 ./makeWebAudio.sh "$1" 18 ./makeWebAudio.sh "$1"
17 ./makeWeb.sh "$1" "$1" "$2" 19 ./makeWeb.sh "$1" "$1" "$2"
18 } 20 }
19 21
20 makeATransposedBooke() 22 makeATransposedBooke()
21 { 23 {
22 ./makeGraphics.sh "$1" 24 ./makeGraphics.sh "$1"
23 ./makeBookeA5.sh "$1" 25 ./makeBookeTunePages.sh "$1"
24 ./makeBookeA4.sh "$1" 26 ./makeBooke.sh "$1" A4
27 ./makeBooke.sh "$1" A5
28 ./makeBooklet.sh "$1"
25 ./makeWebGraphics.sh "$1" 29 ./makeWebGraphics.sh "$1"
26 ./makeWeb.sh "$1" "$2" "$3" 30 ./makeWeb.sh "$1" "$2" "$3"
27 } 31 }
28 32
29 makeABooke $1 33 makeABooke $1