0060d18a20699147012cac6ecf04314badb2d9e8
[allocwithin] / bootstrap
1 #!/bin/sh
2 # This script is used to regenerate autotools stuff
3
4 LIBTOOLIZE=libtoolize
5 case `uname -s` in
6 Darwin) LIBTOOLIZE=glibtoolize ;;
7 esac
8
9 aclocal -I m4 \
10 && ${LIBTOOLIZE} --copy \
11 && automake --add-missing --copy \
12 && autoheader \
13 && autoconf
14