yuzu/externals/SDL/autogen.sh

24 lines
404 B
Bash
Raw Normal View History

2021-04-18 07:35:25 +04:00
#!/bin/sh
2021-05-09 13:30:38 +04:00
2021-04-18 07:35:25 +04:00
echo "Generating build information using autoconf"
echo "This may take a while ..."
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
# Regenerate configuration files
cat acinclude/* >aclocal.m4
2021-05-09 13:30:38 +04:00
2022-07-19 07:48:31 +04:00
if test "$AUTOCONF"x = x; then
AUTOCONF=autoconf
fi
$AUTOCONF || exit 1
2021-05-09 13:30:38 +04:00
rm aclocal.m4
rm -rf autom4te.cache
2021-04-18 07:35:25 +04:00
(cd test; sh autogen.sh)
echo "Now you are ready to run ./configure"