#! /bin/sh
# $Id: bootstrap,v 1.4 2004/11/15 19:58:21 ca Exp $
#
# automatic generation of build (configuration) related files
#
# be verbose
set -x
AUTOCONF_VERSION=2.52
export AUTOCONF_VERSION
# 
aclocal -I build
#
autoheader
#
automake --foreign --add-missing --copy
#
autoconf
#
if test $# -ge 1 -a "x$1" = "x-a"
then
  cd statethreads && ./bld-bin/bootstrap
fi
exit 0
