added autogen.sh to regenerate the build environment
This commit is contained in:
parent
be311495f7
commit
146945d460
15
autogen.sh
Executable file
15
autogen.sh
Executable 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 $@
|
Loading…
Reference in New Issue
Block a user