mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
d6609e2b62
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665588 13f79535-47bb-0310-9956-ffa450edef68
40 lines
555 B
Bash
Executable File
40 lines
555 B
Bash
Executable File
#!/bin/sh
|
|
|
|
topsrcdir="`dirname $0`"
|
|
cd "$topsrcdir"
|
|
|
|
make -k clean >/dev/null 2>&1
|
|
make -k distclean >/dev/null 2>&1
|
|
find . -name Makefile.in -exec rm -f {} \;
|
|
rm -rf \
|
|
AUTHORS \
|
|
ChangeLog \
|
|
INSTALL \
|
|
Makefile \
|
|
Makefile.in \
|
|
Makefile.orig \
|
|
aclocal.m4 \
|
|
autom4te.cache \
|
|
autoscan.log \
|
|
config.guess \
|
|
config.h \
|
|
config.hin \
|
|
config.hin~ \
|
|
config.log \
|
|
config.status \
|
|
config.status.lineno \
|
|
config.sub \
|
|
configure \
|
|
configure.lineno \
|
|
configure.scan \
|
|
depcomp \
|
|
.deps \
|
|
install-sh \
|
|
.libs \
|
|
libtool \
|
|
ltmain.sh \
|
|
missing \
|
|
ylwrap \
|
|
if/gen-* \
|
|
test/gen-*
|