Paul Davis
0bde9c1331
git-svn-id: svn://localhost/trunk/ardour2@535 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
311 B
Bash
Executable File
19 lines
311 B
Bash
Executable File
#! /bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
#echo "Adding libtools."
|
|
#libtoolize --automake --copy --force
|
|
|
|
echo "Building macros."
|
|
aclocal -I "$srcdir/scripts" $ACLOCAL_FLAGS
|
|
|
|
echo "Building makefiles."
|
|
automake --add-missing --copy
|
|
|
|
echo "Building configure."
|
|
autoconf
|
|
|
|
rm -f config.cache
|