SDL-mirror/autogen.sh
Sam Lantinga d3805eef09 New configure-based build system. Still work in progress, but much improved
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401365
2006-02-16 10:11:48 +00:00

11 lines
283 B
Bash
Executable file

#!/bin/sh
#
echo "Generating build information using aclocal and autoconf"
echo "This may take a while ..."
# Regenerate configuration files
(aclocal && autoconf) || exit $?
(cd test; aclocal; autoconf)
# Run configure for this platform
echo "Now you are ready to run ./configure"