bootstrap 456 B

12345678910111213141516171819202122
  1. #! /bin/sh
  2. #
  3. # bootstrap
  4. #
  5. # Short script to create basic autoconf/automake configuration
  6. # files. Useful when freshly checking out the source tree.
  7. echo "Clearing all cached configuration files"
  8. rm -rf autom4te.cache aclocal.m4
  9. rm -f config.* configure
  10. rm -f Makefile.in depcomp install-sh missing mkinstalldirs
  11. echo "Running aclocal"
  12. aclocal
  13. echo "Running automake"
  14. automake --add-missing --copy --force-missing
  15. echo "Running autoconf"
  16. autoconf