diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..ba4c978 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +if `which libtoolize` ; then + libtoolize +# on, e.g., Darwin +elif `which glibtoolize` ; then + glibtoolize +else + echo "libtoolize not found!" + exit 1 +fi + +aclocal +autoconf +automake --add-missing