12 lines
328 B
Text
12 lines
328 B
Text
|
#!/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 $@
|