diff autogen.sh @ 1:183e7cbc1036

Initial revision
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Jun 2003 10:23:04 +0000
parents
children e5c49367b899
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autogen.sh	Tue Jun 03 10:23:04 2003 +0000
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+echo "**************************************************"
+echo "** Generating build information                 **"
+echo "** This may take a while, please be patient ... **"
+echo "**************************************************"
+
+rm -f config.cache config.log
+
+# Touch the timestamps on all the files since CVS messes them up
+directory=`dirname $0`
+touch $directory/configure.in
+
+# Regenerate configuration files
+echo "* aclocal"
+aclocal -I .
+
+echo "* automake"
+automake --foreign -v
+
+echo "* autoconf"
+autoconf
+
+# Run configure for this platform
+./configure $*