mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
eb77ebe26c
autoungunk.sh logic (autobits have grown since I last tried this...).
20 lines
456 B
Bash
Executable File
20 lines
456 B
Bash
Executable File
#!/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
|
|
if test -f Makefile; then
|
|
make distclean
|
|
fi
|
|
mv Makefile.plain Makefile
|
|
else
|
|
make clean
|
|
fi
|
|
|
|
rm -f aclocal.m4 config.* configure install-sh \
|
|
missing mkinstalldirs stamp-h.* Makefile.in \
|
|
ltconfig ltmain.sh depcomp
|
|
rm -rf autom4te.cache
|