1 Star 0 Fork 0

SunBeau/cgdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autogen.sh 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# Responsible for running all the necessary programs in
# the GNU Autotools package to properly setup the build system
# and generate the necessarily build files for you to type
# configure
# make
# make install
# Set if doing an official release
# CGDB_VERSION=0.8.0
if [ -z "$CGDB_VERSION" ]; then
CGDB_VERSION=`git rev-parse --short HEAD`
fi
echo $CGDB_VERSION > VERSION
# Stop on error
set -e
rm -rf autom4te.cache/
echo "-- Running aclocal"
aclocal -I config
echo "-- Running autoconf"
autoconf -f
echo "-- Running autoheader"
autoheader
echo "-- Running automake"
automake -a -c -f -Wno-portability --foreign
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SunBeau/cgdb.git
git@gitee.com:SunBeau/cgdb.git
SunBeau
cgdb
cgdb
master

搜索帮助