#!/bin/sh
# "bootstrap" 
# Maintainer script for regenerating Makefiles and configure scripts.
# (also known as autogen.sh in some conventions)
#	$Id: bootstrap,v 1.1 2007/02/13 23:51:46 fang Exp $

ACLOCAL_FLAGS=

libtoolize --force
aclocal $ACLOCAL_FLAGS
autoheader $ACLOCAL_FLAGS
automake --add-missing --gnu $am_opt
autoconf $ACLOCAL_FLAGS
# really, 'autoreconf' with flags should suffice

