#! /bin/sh
for f in ./config.* autom4te.cache/; do
rm -rf $f
done
if [ -e src/Makevars ]; then
rm -f src/Makevars
fi
exit 0
 
