🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
361 B

  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"