mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
18 lines
311 B
Bash
Executable file
18 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
|