Torque3D/Engine/lib/sdl/autogen.sh

22 lines
361 B
Bash
Raw Normal View History

2015-01-18 21:05:38 +01:00
#!/bin/sh
set -e
2015-01-18 21:05:38 +01:00
echo "Generating build information using autoconf"
echo "This may take a while ..."
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
2018-05-09 23:09:05 +10:00
cd "$srcdir"
2015-01-18 21:05:38 +01:00
# Regenerate configuration files
cat acinclude/* >aclocal.m4
"${AUTOCONF:-autoconf}"
rm aclocal.m4
rm -rf autom4te.cache
2015-01-18 21:05:38 +01:00
(cd test; sh autogen.sh)
echo "Now you are ready to run ./configure"