#!/bin/sh
#
# This bootstrap file has been inspired by the Bootstraping chapter
# in Autobook by Vaughan, Elliston, Tromey and Taylor.
#
# $Id: bootstrap,v 1.3 2007-05-06 10:07:13 hroch Exp $
#

set -x

if [ ! -d configure.aux ]; then
  mkdir configure.aux
fi

if [ ! -f NEWS ]; then
  echo "This file is required by the autoconf/automake/libtool machinery." >> NEWS
fi

if [ ! -f AUTHORS ]; then
  echo "This file is required by the autoconf/automake/libtool machinery." >> AUTHORS
fi

if [ ! -f ChangeLog ]; then
  echo "This file is required by the autoconf/automake/libtool machinery." >> ChangeLog
fi

#cp /usr/local/share/aclocal/libtool.m4 acinclude.m4
libtoolize --force --copy
aclocal
automake --add-missing --copy
autoconf

