autogen.sh
来自「SDL_mixer 是一个基于 SDL 的混音器」· Shell 代码 · 共 19 行
SH
19 行
#!/bin/sh#echo "Generating build information using autoconf"echo "This may take a while ..."# Regenerate configuration filescp acinclude.m4 aclocal.m4found=falsefor autoconf in autoconf autoconf259 autoconf-2.59do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fidoneif test x$found = xfalse; then echo "Couldn't find autoconf, aborting" exit 1fi# Run configure for this platformecho "Now you are ready to run ./configure"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?