2001-07-23 19:03:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script tries to clean up as much as is possible from whatever diabolical
|
|
|
|
# mess has been left in the directory thanks to autoconf, automake, and their
|
|
|
|
# friends.
|
|
|
|
|
|
|
|
if test -f Makefile.plain; then
|
2002-02-20 05:09:22 +00:00
|
|
|
if test -f Makefile; then
|
|
|
|
make distclean
|
|
|
|
fi
|
2001-07-23 19:03:48 +00:00
|
|
|
mv Makefile.plain Makefile
|
2002-02-20 05:09:22 +00:00
|
|
|
else
|
|
|
|
make clean
|
2001-07-23 19:03:48 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f aclocal.m4 config.* configure install-sh \
|
|
|
|
missing mkinstalldirs stamp-h.* Makefile.in \
|
2008-03-28 01:56:08 +00:00
|
|
|
ltconfig ltmain.sh depcomp
|
|
|
|
rm -rf autom4te.cache
|