1 Star 0 Fork 0

墨客实验室/ctags

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autogen.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# Report the paths causing trouble frequently
echo '##################################################################'
echo '# The paths and versions for tools #'
echo '##################################################################'
for t in autoreconf aclocal pkg-config autoconf automake; do
if type $t; then
echo '------------------------------------------------------------------'
$t --version
fi
echo '##################################################################'
done
if [ -e ./aclocal.m4 ]; then
echo '# Renaming aclocal.m4 to last-aclocal.m4 #'
mv ./aclocal.m4 ./last-aclocal.m4
echo '##################################################################'
fi
echo '# Generating files #'
echo '##################################################################'
set -e # errexit (exit on error)
if [ ! -z "${CI}" ]; then
set -x # xtrace (execution trace)
fi
type autoreconf > /dev/null 2>&1 || {
echo "No autotools (autoconf and automake) found" 1>&2
exit 1
}
type pkg-config > /dev/null 2>&1 || {
echo "No pkg-config found" 1>&2
exit 1
}
autoreconf -vfi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/XmacsLabs/ctags.git
git@gitee.com:XmacsLabs/ctags.git
XmacsLabs
ctags
ctags
tm-define

搜索帮助