1 Star 0 Fork 8

zhanghong/ohos_sdl2

forked from OpenHarmony-SIG/ohos_sdl2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autogen.sh 562 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
#
echo "Generating build information using autoconf"
echo "This may take a while ..."
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
# Regenerate configuration files
cat acinclude/* >aclocal.m4
found=false
for autoconf in autoconf autoconf259 autoconf-2.59
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
done
if test x$found = xfalse; then
echo "Couldn't find autoconf, aborting"
exit 1
fi
(cd test; sh autogen.sh)
# Run configure for this platform
echo "Now you are ready to run ./configure"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hongzhang1/ohos_sdl2.git
git@gitee.com:hongzhang1/ohos_sdl2.git
hongzhang1
ohos_sdl2
ohos_sdl2
master

搜索帮助