autogen.sh 361 B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. set -e
  3. echo "Generating build information using autoconf"
  4. echo "This may take a while ..."
  5. srcdir=`dirname $0`
  6. test -z "$srcdir" && srcdir=.
  7. cd "$srcdir"
  8. # Regenerate configuration files
  9. cat acinclude/* >aclocal.m4
  10. "${AUTOCONF:-autoconf}"
  11. rm aclocal.m4
  12. rm -rf autom4te.cache
  13. (cd test; sh autogen.sh)
  14. echo "Now you are ready to run ./configure"