2007-01-25 07:58:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-03-05 22:18:18 +00:00
|
|
|
subdirs="compiler/cpp lib/cpp lib/py"
|
2007-01-25 07:58:55 +00:00
|
|
|
|
|
|
|
rm -rf \
|
|
|
|
AUTHORS \
|
|
|
|
ChangeLog \
|
|
|
|
INSTALL \
|
|
|
|
Makefile.am \
|
|
|
|
Makefile \
|
|
|
|
Makefile.in \
|
|
|
|
Makefile.orig \
|
|
|
|
NEWS \
|
|
|
|
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 \
|
|
|
|
missing
|
|
|
|
|
|
|
|
for subdir in ${subdirs}; do
|
|
|
|
if [ -x "${subdir}/cleanup.sh" ]; then
|
|
|
|
cwd="`pwd`"
|
2007-03-08 01:22:46 +00:00
|
|
|
cd "${subdir}"
|
2007-01-25 07:58:55 +00:00
|
|
|
./cleanup.sh
|
2007-03-08 01:22:46 +00:00
|
|
|
cd "${cwd}"
|
2007-01-25 07:58:55 +00:00
|
|
|
fi
|
|
|
|
done
|