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