view autogen.sh @ 719:269c97e24da6

Date: Fri, 12 Sep 2003 18:04:19 -0400 From: Matthew Danish Subject: patch for k*bsd support I am forwarding this patch from Robert Millan <rmh@debian.org> for supporting K*BSD systems (BSD kernel GNU userland, and hurd) in configure.in.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 21 Sep 2003 18:18:17 +0000
parents 9430ba1a19f3
children c7376efecdb5
line wrap: on
line source

#!/bin/sh
#
echo "Generating build information using aclocal, automake and autoconf"
echo "This may take a while ..."

# Touch the timestamps on all the files since CVS messes them up
directory=`dirname $0`
touch $directory/configure.in

# Regenerate configuration files
aclocal
automake --foreign --include-deps --add-missing --copy
autoconf
(cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf)

# Run configure for this platform
#./configure $*
echo "Now you are ready to run ./configure"