reverted jam buildsystem, until changed for make is working,

minor fix in island processing
This commit is contained in:
ejcoumans
2006-12-25 20:39:39 +00:00
parent 8d92ca34c2
commit 24691e8eb8
7 changed files with 273 additions and 2061 deletions

View File

@@ -9,27 +9,17 @@ MACROFILE=aclocal.m4
MACRODIR=mk/autoconf
rm -f $MACROFILE
echo "Running aclocal"
aclocal
for i in $MACRODIR/*.m4 ; do
cat $i >> $MACROFILE
done
echo "Running automake --add-missing"
automake --add-missing
echo "Running autoheader"
autoheader
rc=$?
if test $rc -eq 0; then
echo "Running autoconf"
autoconf
rc=$?
fi
#rm -f $MACROFILE
rm -f $MACROFILE
exit $rc