1#!/bin/sh
2for f in ./config.*; do
3    rm -f $f
4done
5if [ -e confdefs.h ]; then
6    rm -f confdefs.h
7fi
8if [ -e src/Makevars ]; then
9    rm -f src/Makevars
10fi
11
12exit 0
13