#!/bin/sh
autoheader
aclocal
autoconf
automake --gnu --add-missing --copy 
if [ -z config.cahe ] ; 
    then echo file not exits ;  
    else rm config.cache; 
fi

