2001-04-26 16:45:43 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2006-02-16 10:11:48 +00:00
|
|
|
echo "Generating build information using aclocal and autoconf"
|
2001-04-26 16:45:43 +00:00
|
|
|
echo "This may take a while ..."
|
|
|
|
|
|
|
|
# Regenerate configuration files
|
2006-02-16 10:11:48 +00:00
|
|
|
(aclocal && autoconf) || exit $?
|
|
|
|
(cd test; aclocal; autoconf)
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
# Run configure for this platform
|
|
|
|
echo "Now you are ready to run ./configure"
|