author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 12 Dec 2005 09:22:36 +0000 | |
changeset 1200 | 8f418dce02b2 |
parent 1142 | c7376efecdb5 |
child 1341 | d02b552e5304 |
permissions | -rwxr-xr-x |
slouken@0 | 1 |
#!/bin/sh |
slouken@0 | 2 |
# |
slouken@0 | 3 |
echo "Generating build information using aclocal, automake and autoconf" |
slouken@0 | 4 |
echo "This may take a while ..." |
slouken@0 | 5 |
|
slouken@0 | 6 |
# Touch the timestamps on all the files since CVS messes them up |
slouken@0 | 7 |
directory=`dirname $0` |
slouken@0 | 8 |
touch $directory/configure.in |
slouken@0 | 9 |
|
slouken@0 | 10 |
# Regenerate configuration files |
slouken@1142 | 11 |
aclocal || exit 1 |
slouken@1142 | 12 |
automake --foreign --include-deps --add-missing --copy || exit 1 |
slouken@1142 | 13 |
autoconf || exit 1 |
slouken@343 | 14 |
(cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf) |
slouken@0 | 15 |
|
slouken@0 | 16 |
# Run configure for this platform |
slouken@0 | 17 |
#./configure $* |
slouken@0 | 18 |
echo "Now you are ready to run ./configure" |