author | Sam Lantinga <slouken@libsdl.org> |
Thu, 16 Feb 2006 10:11:48 +0000 | |
changeset 1361 | 19418e4422cb |
parent 1341 | d02b552e5304 |
child 1376 | 4a47f20705eb |
permissions | -rwxr-xr-x |
0 | 1 |
#!/bin/sh |
2 |
# |
|
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
3 |
echo "Generating build information using aclocal and autoconf" |
0 | 4 |
echo "This may take a while ..." |
5 |
||
6 |
# Regenerate configuration files |
|
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
7 |
(aclocal && autoconf) || exit $? |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1341
diff
changeset
|
8 |
(cd test; aclocal; autoconf) |
0 | 9 |
|
10 |
# Run configure for this platform |
|
11 |
echo "Now you are ready to run ./configure" |