autogen.sh

来自「This library is a C port of the implemen」· Shell 代码 · 共 39 行

SH
39
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?