bootstrap 583 B

12345678910111213141516171819202122232425262728
  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. #
  8. # Copyright 2002-2004 Mayo Foundation. All Rights Reserved.
  9. # $Id: bootstrap,v 1.4 2004/02/09 18:56:00 techenti Exp $
  10. #
  11. echo "Clearing all cached configuration files"
  12. rm -rf autom4te.cache aclocal.m4
  13. rm -f config.* configure
  14. rm -f Makefile.in depcomp install-sh missing mkinstalldirs
  15. echo "Running aclocal"
  16. aclocal
  17. echo "Running automake"
  18. automake --add-missing --copy --force-missing
  19. echo "Running autoconf"
  20. autoconf