Remove the 'already generated' checks.

Let's make sure all content gets generated.

I really, really need to do a proper build system for this lot.
This commit is contained in:
Jim Hague 2020-02-19 10:48:56 +00:00
parent 449ef19c56
commit 7f09e796d9
3 changed files with 0 additions and 20 deletions

View File

@ -22,11 +22,6 @@ find $booke -maxdepth 1 -name "*.abc" |
do
name=`basename $filename .abc`
# Already generated?
if [ -f $graphicsdir/${name}.pdf ]; then
continue
fi
# Make the tune graphic.
abcm2ps -E -F singletune -O $graphicsdir/$name.eps $filename
# Make $name.eps so we can build with LaTeX.
@ -58,11 +53,6 @@ find ${booke}/Compact -maxdepth 1 -name "*.abc" |
do
name=`basename $filename .abc`
# Already generated?
if [ -f $graphicsdir/compact-${name}.pdf ]; then
continue
fi
# Make the tune graphic.
abcm2ps -E -F singletune -O $graphicsdir/compact-${name}.eps $filename
# Make $name.eps so we can build with LaTeX.

View File

@ -85,11 +85,6 @@ find $booke -maxdepth 1 -name "*.abc" | sort |
name=`basename $filename .abc`
tunedir=$basetunedir/$name
# Already generated?
if [ -f $tunedir/${name}.mp3 ]; then
continue
fi
mkdir -p $tunedir
makeaudiofiles $filename $tunedir

View File

@ -30,11 +30,6 @@ find $booke -maxdepth 1 -name "*.abc" | sort |
name=`basename $filename .abc`
tunedir=$basetunedir/$name
# Already generated?
if [ -f $tunedir/${name}.pdf ]; then
continue
fi
mkdir -p $tunedir
tmpname=${name}.tmp