1 Star 11 Fork 7

个人项目学习 / 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
C++
1
https://gitee.com/sheepyang_study/code.git
git@gitee.com:sheepyang_study/code.git
sheepyang_study
code
GeographicLib
master

搜索帮助