17 lines
223 B

#!/bin/sh
set -x
rm -f config.cache
type -p glibtoolize 1>/dev/null 2>&1
if test "$?" = "0"; then
glibtoolize --copy --force
else
libtoolize --copy --force
fi
aclocal -I m4
autoheader
automake -a -c -f
autoconf
exit