加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/alibaba/tfs
克隆/下载
build.sh 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
duanfei@taobao.com 提交于 2012-07-11 08:51 . create release-2.2.7
#!/bin/sh
export AUTOM4TE="autom4te"
export AUTOCONF="autoconf"
case "x$1" in
xinit)
set -x
aclocal
libtoolize --force --copy
autoconf --force
automake --foreign --copy --add-missing
;;
xclean)
echo 'cleaning...'
make distclean >/dev/null 2>&1
rm -rf autom4te.cache
for fn in aclocal.m4 configure config.guess config.sub depcomp install-sh \
ltmain.sh missing mkinstalldirs config.log config.status Makefile; do
rm -f $fn
done
find . -name Makefile.in -exec rm -f {} \;
find . -name .deps -prune -exec rm -rf {} \;
echo 'done'
;;
*)
echo "Usage: $0 [ clean | init ]"
;;
esac
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化