2007-01-25 07:58:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-08-29 00:58:14 +00:00
|
|
|
subdirs="compiler/cpp lib/cpp lib/py if"
|
2007-01-25 07:58:55 +00:00
|
|
|
|
|
|
|
rm -rf \
|
|
|
|
AUTHORS \
|
|
|
|
ChangeLog \
|
|
|
|
INSTALL \
|
|
|
|
Makefile \
|
|
|
|
Makefile.in \
|
|
|
|
Makefile.orig \
|
|
|
|
aclocal.m4 \
|
|
|
|
autom4te.cache \
|
|
|
|
autoscan.log \
|
|
|
|
config.guess \
|
|
|
|
config.h \
|
|
|
|
config.hin \
|
|
|
|
config.log \
|
|
|
|
config.status \
|
|
|
|
config.sub \
|
|
|
|
configure \
|
|
|
|
configure.scan \
|
|
|
|
depcomp \
|
|
|
|
.deps \
|
|
|
|
install-sh \
|
|
|
|
.libs \
|
|
|
|
libtool \
|
|
|
|
ltmain.sh \
|
2007-08-27 19:57:34 +00:00
|
|
|
missing \
|
2007-09-18 19:46:00 +00:00
|
|
|
ylwrap \
|
2007-08-27 19:57:34 +00:00
|
|
|
if/gen-*
|
2007-01-25 07:58:55 +00:00
|
|
|
|
|
|
|
for subdir in ${subdirs}; do
|
|
|
|
if [ -x "${subdir}/cleanup.sh" ]; then
|
2007-12-28 18:25:33 +00:00
|
|
|
cwd="`pwd`"
|
|
|
|
cd "${subdir}"
|
|
|
|
./cleanup.sh
|
|
|
|
cd "${cwd}"
|
2007-01-25 07:58:55 +00:00
|
|
|
fi
|
|
|
|
done
|