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 \ | ||||
Mark Slee | eb0d024 | 2007-01-25 07:58:55 +0000 | [diff] [blame] | 7 | ChangeLog \ |
8 | INSTALL \ | ||||
9 | Makefile.am \ | ||||
10 | Makefile \ | ||||
11 | Makefile.in \ | ||||
12 | Makefile.orig \ | ||||
13 | NEWS \ | ||||
14 | aclocal.m4 \ | ||||
15 | autom4te.cache \ | ||||
16 | autoscan.log \ | ||||
17 | config.guess \ | ||||
18 | config.h \ | ||||
19 | config.hin \ | ||||
20 | config.log \ | ||||
21 | config.status \ | ||||
22 | config.sub \ | ||||
23 | configure \ | ||||
24 | configure.scan \ | ||||
25 | depcomp \ | ||||
26 | .deps \ | ||||
27 | install-sh \ | ||||
28 | .libs \ | ||||
29 | libtool \ | ||||
30 | ltmain.sh \ | ||||
31 | missing | ||||
32 | |||||
33 | for 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 | ||||
40 | done |