blob: abe038f61b31f1c2e98648e737a1403d615d2335 [file] [log] [blame]
#!/bin/sh
olddir=`pwd`
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
gprefix=`which glibtoolize 2>&1 >/dev/null`
if [ $? -eq 0 ]; then
glibtoolize --force
else
libtoolize --force
fi
aclocal -I m4
autoheader
automake --add-missing
autoconf
cd "$olddir"
if [ -z "$NOCONFIGURE" ]; then
$srcdir/configure "$@"
fi