author | Sam Lantinga <slouken@libsdl.org> |
Sat, 01 Feb 2003 19:59:23 +0000 | |
changeset 588 | 2c6510c0a304 |
parent 343 | 9430ba1a19f3 |
child 1142 | c7376efecdb5 |
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@0 | 11 |
aclocal |
slouken@342 | 12 |
automake --foreign --include-deps --add-missing --copy |
slouken@0 | 13 |
autoconf |
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" |