2005-05-13 16:47:18 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
2007-02-22 15:50:35 -05:00
|
|
|
# check all tools first
|
|
|
|
|
|
|
|
if /usr/bin/which libtoolize >/dev/null 2>&1 ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "You do not have libtool installed, which is very sadly required to build part of Ardour"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if /usr/bin/which automake >/dev/null 2>&1 ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "You do not have automake installed, which is very sadly required to build part of Ardour"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if /usr/bin/which autoconf >/dev/null 2>&1 ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
echo "You do not have autoconf installed, which is very sadly required to build part of Ardour"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2005-05-13 16:47:18 -04:00
|
|
|
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
|