bootstrap 603 B

1234567891011121314151617181920212223242526272829
  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
  17. echo "Bootstrapping subdirectories of " `pwd`
  18. for i in */bootstrap ; do
  19. echo bootstrapping $i
  20. cd `dirname $i`
  21. bootstrap
  22. cd ..
  23. done