| #!/bin/sh | #!/bin/sh | ||||
| LIBTOOLIZE=`which libtoolize` | |||||
| if ! test -f "$LIBTOOLIZE" ; then | |||||
| # Mac OSX support ... | |||||
| LIBTOOLIZE=`which glibtoolize` | |||||
| fi | |||||
| mkdir -p m4 | mkdir -p m4 | ||||
| touch AUTHORS | touch AUTHORS | ||||
| touch NEWS | touch NEWS | ||||
| aclocal -I m4 || exit 1 | aclocal -I m4 || exit 1 | ||||
| libtoolize || exit 1 | |||||
| ${LIBTOOLIZE} || exit 1 | |||||
| autoheader || exit 1 | autoheader || exit 1 | ||||
| automake --add-missing || exit 1 | automake --add-missing || exit 1 | ||||
| autoconf || exit 1 | autoconf || exit 1 |