2 Star 5 Fork 0

shan / PHP7 源码 中文注解

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
buildconf 772 Bytes
一键复制 编辑 原始数据 按行查看 历史
shan 提交于 2018-11-23 10:29 . ..
#!/bin/sh
# $Id$
eval `grep '^PHP_EXTRA_VERSION=' configure.ac`
case "$PHP_EXTRA_VERSION" in
*-dev)
dev=1
;;
*)
dev=0
;;
esac
devok=0
debug=no
while test $# -gt 0; do
if test "$1" = "--force"; then
devok=1
echo "Forcing buildconf"
fi
if test "$1" = "--debug"; then
debug=yes
fi
shift
done
if test "$dev" = "0" -a "$devok" = "0"; then
echo "You should not run buildconf in a release package."
echo "use buildconf --force to override this check."
exit 1
fi
if test "$devok" = "1"; then
echo "Removing configure caches"
rm -rf autom4te.cache config.cache
fi
rm -f generated_lists
if test "$debug" = "yes"; then
${MAKE:-make} -s -f build/build.mk SUPPRESS_WARNINGS=""
else
${MAKE:-make} -s -f build/build.mk
fi
1
https://gitee.com/shanliu-msn/php-src-zh_cn-doc.git
git@gitee.com:shanliu-msn/php-src-zh_cn-doc.git
shanliu-msn
php-src-zh_cn-doc
PHP7 源码 中文注解
master

搜索帮助