📄 autogen.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -