⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 autogen.sh

📁 This library is a C port of the implementation of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L
💻 SH
字号:
#!/bin/sh# $Id: autogen.sh 2 2008-04-24 15:04:59Z naoaki $if [ "$1" = "--force" ];then    FORCE=--force    NOFORCE=    FORCE_MISSING=--force-missingelse    FORCE=    NOFORCE=--no-force    FORCE_MISSING=filibtoolize --copy $FORCE 2>&1 | sed '/^You should/d' || {    echo "libtoolize failed!"    exit 1}aclocal $FORCE || {    echo "aclocal failed!"    exit 1}autoheader $FORCE || {    echo "autoheader failed!"    exit 1}automake -a -c $NOFORCE || {    echo "automake failed!"    exit 1}autoconf $FORCE || {    echo "autoconf failed!"    exit 1}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -