2001-07-23 21:03:48 +02: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 06:09:22 +01:00
|
|
|
if test -f Makefile; then
|
|
|
|
make distclean
|
|
|
|
fi
|
2001-07-23 21:03:48 +02:00
|
|
|
mv Makefile.plain Makefile
|
2002-02-20 06:09:22 +01:00
|
|
|
else
|
|
|
|
make clean
|
2001-07-23 21:03:48 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f aclocal.m4 config.* configure install-sh \
|
|
|
|
missing mkinstalldirs stamp-h.* Makefile.in \
|
|
|
|
ltconfig ltmain.sh
|