bootstrap 240 B

123456789101112
  1. #!/bin/sh
  2. set -e
  3. echo "Initial preparation...this can take awhile, so sit tight..."
  4. aclocal
  5. libtoolize --automake --copy --force
  6. autoheader
  7. automake --foreign --add-missing --copy
  8. autoconf
  9. echo "You are now ready to run ./configure ..."