blob: 34090e965a798a93fb9bf92090b3b7eccacc5f11 [file] [log] [blame]
#! /bin/sh
echo Running libtoolize...
libtoolize --automake -c
if test ! -z "`which autoreconf`"; then
echo Running autoreconf...
autoreconf -i
else
echo Running aclocal...
aclocal
echo Running autoheader...
autoheader
echo Running autoconf...
autoconf
echo Running automake...
automake -a -c
(
echo Entering directory: kernel
cd kernel
echo Running autoheader...
autoheader
echo Running autoconf...
autoconf
)
fi
rm -f config.cache config.status
echo "To compile run './configure', and then 'make'."