diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..aa75f54 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh +# $Id$ +aclocal +if test $? -ne 0; then + exit +fi +automake --add-missing +if test $? -ne 0; then + exit +fi +autoconf +if test $? -ne 0; then + exit +fi +./configure $@