blob: 98e8190138f2627fda70fe6b8edb3afd2d73338e [file] [log] [blame]
Mark Sleeeb0d0242007-01-25 07:58:55 +00001#!/bin/sh
2
3subdirs="compiler/cpp lib/cpp lib/php lib/py"
4
5rm -rf \
6AUTHORS \
Mark Sleeeb0d0242007-01-25 07:58:55 +00007ChangeLog \
8INSTALL \
9Makefile.am \
10Makefile \
11Makefile.in \
12Makefile.orig \
13NEWS \
14aclocal.m4 \
15autom4te.cache \
16autoscan.log \
17config.guess \
18config.h \
19config.hin \
20config.log \
21config.status \
22config.sub \
23configure \
24configure.scan \
25depcomp \
26.deps \
27install-sh \
28.libs \
29libtool \
30ltmain.sh \
31missing
32
33for subdir in ${subdirs}; do
34 if [ -x "${subdir}/cleanup.sh" ]; then
35 cwd="`pwd`"
36 cd ${subdir}
37 ./cleanup.sh
38 cd ${cwd}
39 fi
40done