1 Star 0 Fork 7

qsk/GeographicLib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autogen.sh 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
#
# A simple script to add/reset autotools support
# This requires that autoconf and autoconf-archive are installed
run ()
{
echo "Running: $*"
eval $*
if test $? != 0 ; then
echo "Error: while running '$*'"
exit 1
fi
}
mv m4/pkg.m4 ./
rm -rf autom4ate.cache m4
mkdir m4
mv pkg.m4 m4/
run aclocal
run autoheader
LIBTOOLIZE=libtoolize
type $LIBTOOLIZE > /dev/null 2>&1 || LIBTOOLIZE=g$LIBTOOLIZE
run $LIBTOOLIZE --force --copy
run automake --add-missing --copy --force-missing --foreign
run autoconf
run autoreconf
rm -f man/*.usage man/*.1 man/*.1.html include/GeographicLib/Config-ac.h
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qqsskk/code.git
git@gitee.com:qqsskk/code.git
qqsskk
code
GeographicLib
master

搜索帮助