2005-05-13 16:47:18 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
2006-05-26 08:41:38 -04:00
|
|
|
#echo "Adding libtools."
|
|
|
|
#libtoolize --automake --copy --force
|
2005-05-13 16:47:18 -04:00
|
|
|
|
|
|
|
echo "Building macros."
|
|
|
|
aclocal -I "$srcdir/scripts" $ACLOCAL_FLAGS
|
|
|
|
|
|
|
|
echo "Building makefiles."
|
|
|
|
automake --add-missing --copy
|
|
|
|
|
|
|
|
echo "Building configure."
|
|
|
|
autoconf
|
|
|
|
|
|
|
|
rm -f config.cache
|