diff options
author | David Reiss <dreiss@apache.org> | 2008-03-27 21:39:55 +0000 |
---|---|---|
committer | David Reiss <dreiss@apache.org> | 2008-03-27 21:39:55 +0000 |
commit | d6609e2b627d69aa191376bcd47046a627aa91d3 (patch) | |
tree | c67a7281bbfdfc441141ba55c78332c07688e3f0 /cleanup.sh | |
parent | f10984b5890af0b662e46f6d594a8ebf3c35027a (diff) | |
download | thrift-d6609e2b627d69aa191376bcd47046a627aa91d3.tar.gz |
Make cleanup.sh work a little better.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665588 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cleanup.sh')
-rwxr-xr-x | cleanup.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cleanup.sh b/cleanup.sh index d6b6df7e6..bd5e65e3f 100755 --- a/cleanup.sh +++ b/cleanup.sh @@ -3,7 +3,8 @@ topsrcdir="`dirname $0`" cd "$topsrcdir" -make distclean >/dev/null 2>&1 +make -k clean >/dev/null 2>&1 +make -k distclean >/dev/null 2>&1 find . -name Makefile.in -exec rm -f {} \; rm -rf \ AUTHORS \ @@ -21,8 +22,10 @@ config.hin \ config.hin~ \ config.log \ config.status \ +config.status.lineno \ config.sub \ configure \ +configure.lineno \ configure.scan \ depcomp \ .deps \ @@ -32,4 +35,5 @@ libtool \ ltmain.sh \ missing \ ylwrap \ -if/gen-* +if/gen-* \ +test/gen-* |