Annotation of talos/autogen.sh, revision 1.1
1.1 ! nick 1: #!/bin/sh
! 2: # $Id: autogen.sh,v 1.4 2009-03-28 03:59:07 nick Exp $
! 3:
! 4: # Remove any previously created cache files
! 5: test -w config.cache && rm config.cache
! 6: test -w config.cross.cache && rm config.cross.cache
! 7:
! 8: # Regenerate configuration files
! 9: aclocal
! 10: automake --foreign --add-missing
! 11: autoconf
! 12:
! 13: # Run configure for this platform
! 14: #./configure $*
! 15: echo "Now you are ready to run ./configure"
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>