added autogen.sh to regenerate the build environment

This commit is contained in:
Michael Elkins 2000-12-20 22:10:45 +00:00
parent be311495f7
commit 146945d460

15
autogen.sh Executable file
View File

@ -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 $@