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