123456789101112131415161718192021222324252627282930313233 |
- #! /bin/sh
- #
- # bootstrap
- #
- # Short script to create basic autoconf/automake configuration
- # files. Useful when freshly checking out the source tree.
- #
- # Copyright 2002-2004 Mayo Foundation. All Rights Reserved
- # $Id: bootstrap,v 1.7 2004/04/22 21:38:49 techenti Exp $
- #
- echo "Clearing all cached configuration files"
- rm -rf autom4te.cache aclocal.m4
- rm -f config.* configure
- rm -f Makefile.in depcomp install-sh missing mkinstalldirs
- echo "Running aclocal"
- aclocal
- echo "Running automake"
- automake --add-missing --copy --force-missing
- echo "Running autoconf"
- autoconf
- echo "Bootstrapping subdirectories of " `pwd`
- for i in */bootstrap ; do
- echo bootstrapping $i
- cd `dirname $i`
- bootstrap
- cd ..
- done
|