autogen.sh

来自「开源的OpenId的一个java实现」· Shell 代码 · 共 52 行

SH
52
字号
#!/bin/bashecho -n 'Running libtoolize...'if [ `uname -s` = Darwin ]then    LIBTOOLIZE=glibtoolizeelse    LIBTOOLIZE=libtoolizefiif $LIBTOOLIZE --force > /dev/null 2>&1; then	echo 'done.'else	echo 'failed.'	exit 1fiecho -n 'Running aclocal...'if aclocal -I ./acinclude.d > /dev/null 2>&1; then	echo 'done.'else	echo 'failed.'	exit 1fiecho -n 'Running autoheader...'if autoheader > /dev/null 2>&1; then	echo 'done.'else	echo 'failed.'	exit 1fiecho -n 'Running autoconf...'if autoconf > /dev/null 2>&1; then	echo 'done.'else	echo 'failed.'	exit 1fiecho -n 'Running automake...'if automake --add-missing > /dev/null 2>&1; then	echo 'done.'else	echo 'failed.'	exit 1fiecho 'done'

⌨️ 快捷键说明

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