#!/bin/sh
#
# Copyright (C) 1999-2000 Open Source Telecom Corporation.
#  
# This file is free software; the author gives unlimited permission to copy 
# and/or distribute it, with or without modifications, as long as this notice 
# is preserved.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

rm -f config.cache
libtoolize --copy --force
if test -d ~/share/aclocal ; then
	aclocal -I m4 -I ~/share/aclocal
else
	aclocal -I m4
fi
autoheader
automake --add-missing --copy
autoconf

