Merge branch 'release/0.0'
[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