updated build configuration to include make, next to jam. So ./configure will create Makefile AND Jamefile.

This commit is contained in:
ejcoumans
2006-12-15 18:24:31 +00:00
parent c5e0f8bb7e
commit 13b637f1ce
7 changed files with 1592 additions and 246 deletions

View File

@@ -1,4 +1,5 @@
#! /bin/sh
set -x
if test ! -f configure.ac ; then
echo "*** Please invoke this script from directory containing configure.ac."
@@ -9,17 +10,27 @@ 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