ledger/tools/build
John Wiegley 740cd8e8f1 Added feature baseline tests
These are like regression tests to confirm the basic functionality of
every Ledger feature.  Also, made the release-distcheck target less
sensitive.
2009-02-20 13:31:01 -04:00

20 lines
382 B
Bash
Executable file

#!/bin/sh
set -e
SRCDIR=$(pwd)
if [ -d ~/Products/ledger ]; then
cd ~/Products/ledger
fi
if [ ! -f Makefile -o \
$SRCDIR/Makefile.am -nt Makefile -o \
$SRCDIR/configure.ac -nt Makefile -o \
$SRCDIR/acprep -nt Makefile -o \
$SRCDIR/acprep -nt Makefile -o \
$SRCDIR/tools/myacprep -nt Makefile ]; then
(cd $SRCDIR && tools/myacprep)
fi
make "$@"