view autogen.sh @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents d02b552e5304
children 4a47f20705eb
line wrap: on
line source

#!/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"