Browse Source

added autogen.sh to regenerate the build environment

0.9
Michael Elkins 24 years ago
parent
commit
146945d460
  1. 15
      autogen.sh

15
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 $@
Loading…
Cancel
Save