1#!/bin/sh
2
3# This script tries to clean up as much as is possible from whatever diabolical
4# mess has been left in the directory thanks to autoconf, automake, and their
5# friends.
6
7if test -f Makefile; then
8	make distclean
9	rm -f Makefile
10fi
11
12if test -f Makefile.plain; then
13	mv Makefile.plain Makefile
14fi
15
16rm -f aclocal.m4 config.* configure install-sh \
17	missing mkinstalldirs stamp-h.* Makefile.in \
18	ltconfig ltmain.sh
19