Fixes for Autoconf build system

This commit is contained in:
john.mccutchan
2008-10-02 22:48:03 +00:00
parent 36fa9f3382
commit 37ee70f0f4
7 changed files with 2439 additions and 372 deletions

View File

@@ -9,28 +9,19 @@ if test ! -f configure.ac ; then
exit 1
fi
#MACROFILE=aclocal.m4
#MACRODIR=mk/autoconf
#rm -f $MACROFILE
aclocal -I mk/autoconf
rc=$?
#for i in $MACRODIR/*.m4 ; do
# cat $i >> $MACROFILE
#done
if test $rc -eq 0; then
automake --add-missing
libtoolize --force --automake --copy
rc=$?
fi
if test $rc -eq 0; then
libtoolize --force
automake --add-missing --copy
rc=$?
fi
if test $rc -eq 0; then
autoheader
rc=$?
@@ -41,4 +32,5 @@ if test $rc -eq 0; then
rc=$?
fi
echo "autogen.sh complete"
exit $rc