diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-09 03:30:23 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-09 21:51:02 -0400 |
commit | e0473e207b299858ef9550ed71be125a9db994ac (patch) | |
tree | c465423f60a66fe739b52a713dea700e86e926d5 /tools/build | |
parent | 6154b9e794942bae557516a358e1bc3d665b60db (diff) | |
download | fork-ledger-e0473e207b299858ef9550ed71be125a9db994ac.tar.gz fork-ledger-e0473e207b299858ef9550ed71be125a9db994ac.tar.bz2 fork-ledger-e0473e207b299858ef9550ed71be125a9db994ac.zip |
Rewrote acprep in Python and improved the build
Diffstat (limited to 'tools/build')
-rwxr-xr-x | tools/build | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/build b/tools/build deleted file mode 100755 index d2753a11..00000000 --- a/tools/build +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -set -e - -SRCDIR=$(pwd) -OUTPUT=$(tools/outdir) -SWITCHES="" - -if [ -n "$OUTPUT" -a -d "$OUTPUT" ]; then - cd "$OUTPUT" - SWITCHES="--output $OUTPUT" -fi - -if [ ! -f Makefile -o \ - $SRCDIR/Makefile.am -nt Makefile -o \ - $SRCDIR/configure.ac -nt Makefile -o \ - $SRCDIR/acprep -nt Makefile -o \ - $SRCDIR/myacprep -nt Makefile ]; then - (cd $SRCDIR && tools/myacprep "$SWITCHES") -fi - -make "$@" |