#! /bin/sh
#
# $Id: bootstrap,v 1.4 2006/07/20 02:30:53 vlg Exp $
# bootstrap -- Use this script to create generated files from the CVS dist

set -x
aclocal -I macros

autoheader 2>/dev/null 1>&2

# Files generated by libtoolize (libtool.m4, ltmain.sh, libtool) must 
# be from the same version, otherwise weird errors might pop up
# (a library suddenly losing its '.so' extension).
# If you change the source files (configure.in) and re-run autotools,
# you must re-run libtoolize also to bring all generated files
# to the same version
#
libtoolize --copy --force || die

automake --foreign --add-missing --copy
autoconf

echo "Now type \`configure' and \`make' to compile your package"


