1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#!/bin/sh
ACLOCAL="aclocal"
AUTOHEADER="autoheader"
AUTOMAKE="automake -a -c --foreign"
AUTOCONF="autoconf"
ACINCLUDE_FILES="xformsinclude.m4 libtool.m4 cygwin.m4"
# Discover what version of autoconf we are using.
autoversion=`$AUTOCONF --version | head -n 1`
echo "Using $autoversion"
case $autoversion in
*2.5[12346789])
;;
*2.[6789][0123456789])
;;
*)
echo "This autoconf version is not supported by xforms."
echo "Please update to autoconf 2.51 or newer."
exit
;;
esac
# Generate acinclude.m4
echo -n "Generate acinclude.m4... "
rm -f acinclude.m4
(cd config ; cat ${ACINCLUDE_FILES} ${EXTRA_ACINCLUDE_FILES} >../acinclude.m4)
echo "done."
# Generate the Makefiles and configure files
if ( $ACLOCAL --version ) < /dev/null > /dev/null 2>&1; then
echo "Building macros..."
for dir in . ; do
echo " $dir"
( cd $dir ; $ACLOCAL )
done
echo "done."
else
echo "aclocal not found -- aborting"
exit
fi
if ( $AUTOHEADER --version ) < /dev/null > /dev/null 2>&1; then
echo "Building config header template..."
for dir in . ; do
echo " $dir"
( cd $dir ; $AUTOHEADER )
done
echo "done."
else
echo "autoheader not found -- aborting"
exit
fi
if ( $AUTOMAKE --version ) < /dev/null > /dev/null 2>&1; then
echo "Building Makefile templates..."
for dir in . ; do
echo " $dir"
( cd $dir ; $AUTOMAKE )
done
echo "done."
else
echo "automake not found -- aborting"
exit
fi
if ( $AUTOCONF --version ) < /dev/null > /dev/null 2>&1; then
echo "Building configure..."
for dir in . ; do
echo " $dir"
( cd $dir ; $AUTOCONF )
done
echo "done."
else
echo "autoconf not found -- aborting"
exit
fi
echo
echo 'run "./configure ; make"'
echo
|