blob: bb525bdb3421598f3a581d04c1151f31f970e641 [file] [log] [blame]
#!/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