2001-12-29 04:34:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2002-09-06 17:30:21 +00:00
|
|
|
echo "Running aclocal"
|
|
|
|
aclocal
|
2001-12-29 04:34:02 +00:00
|
|
|
|
|
|
|
echo "Running autoheader"
|
2002-08-24 20:23:59 +00:00
|
|
|
autoheader
|
2002-08-24 05:54:33 +00:00
|
|
|
if [ ! -e src/Include/config.h.in ]; then
|
|
|
|
echo "ERROR: autoheader didn't create simgear/simgear_config.h.in!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-12-29 04:34:02 +00:00
|
|
|
|
2002-09-06 17:30:21 +00:00
|
|
|
echo "Running automake --add-missing"
|
|
|
|
automake --add-missing
|
2001-12-29 04:34:02 +00:00
|
|
|
|
|
|
|
echo "Running autoconf"
|
2002-08-24 20:23:59 +00:00
|
|
|
autoconf
|
2002-08-24 05:54:33 +00:00
|
|
|
|
|
|
|
if [ ! -e configure ]; then
|
|
|
|
echo "ERROR: configure was not created!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-12-29 04:34:02 +00:00
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "======================================"
|
|
|
|
|
|
|
|
if [ -f config.cache ]; then
|
|
|
|
echo "config.cache exists. Removing the config.cache file will force"
|
|
|
|
echo "the ./configure script to rerun all it's tests rather than using"
|
|
|
|
echo "the previously cached values."
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Now you are ready to run './configure'"
|
|
|
|
echo "======================================"
|