32c7e6dc9b
Included build wrapper script. It adds lib/tinwhistle to search path (so .../tinwhistle.ily can be easily included) And invokes the stylesheet at lib/styles/tinwhistle.ily
11 lines
328 B
Bash
Executable file
11 lines
328 B
Bash
Executable file
#!/bin/bash
|
|
# Build script for the tinwhistle scores
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
LIB=$DIR/../lib
|
|
STYLESHEET=$LIB/styles/tinwhistle.ily
|
|
|
|
# In case, tinwhistle.ily is included in file
|
|
TINWHISTLE_DIR=$LIB/tinwhistle/
|
|
|
|
lilypond -dinclude-settings=$STYLESHEET -I $TINWHISTLE_DIR -dno-strip-output-dir $@
|