加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autogen.sh 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
krechert 提交于 2008-10-20 19:59 . s not working on all versions
#!/bin/sh
bail_out()
{
echo
echo " Something went wrong, bailing out!"
echo
exit 1
}
echo "Running libtoolize -f -c"
libtoolize -f -c || bail_out
echo "Running aclocal -I macros"
aclocal -I macros || bail_out
echo "Running libtoolize --automake"
libtoolize --automake || bail_out
echo "Running autoheader -f"
autoheader -f || bail_out
echo "Running automake"
automake --add-missing -c > /dev/null || bail_out
echo "Running autoconf"
autoconf || bail_out
echo
echo " All autostuff worked fine. "
echo
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化