moved files around

This commit is contained in:
ejcoumans
2006-05-25 19:18:29 +00:00
commit e061ec1ebf
1024 changed files with 349445 additions and 0 deletions

25
autogen.sh Executable file
View File

@@ -0,0 +1,25 @@
#! /bin/sh
if test ! -f configure.ac ; then
echo "*** Please invoke this script from directory containing configure.ac."
exit 1
fi
MACROFILE=aclocal.m4
MACRODIR=mk/autoconf
rm -f $MACROFILE
for i in $MACRODIR/*.m4 ; do
cat $i >> $MACROFILE
done
autoheader
rc=$?
if test $rc -eq 0; then
autoconf
rc=$?
fi
rm -f $MACROFILE
exit $rc