repo.or.cz
/
amiethrift.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1377@opsdev009 (orig r71806): mcslee | 2007-11-28 14:28:13 -0800
[amiethrift.git]
/
cleanup.sh
blob
0ffe31c3a24e699f9ee740999718129de7b7008b
1
#!/bin/sh
2
3
subdirs
=
"compiler/cpp lib/cpp lib/py if"
4
5
rm
-rf
\
6
AUTHORS \
7
ChangeLog \
8
INSTALL \
9
Makefile \
10
Makefile.
in
\
11
Makefile.orig \
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 \
29
missing \
30
ylwrap \
31
if
/
gen-
*
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