#!/bin/sh

rm -f config.cache

if [ -d m4 ]; then
	echo "Looking in m4 directory."
	aclocal -I m4
else
	aclocal
	fi
	
autoconf
autoheader
automake -a
exit
