?? autogen.sh
字號:
#!/bin/sh# autogen.sh: Automatically generate all build files from configure.ac# aclocal doesn't like it if you -I the system aclocal directorySYS_ACLOCAL_DIR=`aclocal --print-ac-dir`for i in m4 /usr/local/share/aclocal; do if [ ! $i = $SYS_ACLOCAL_DIR -a -d $i ]; then ACLOCAL_OPTS="$ACLOCAL_OPTS -I $i" fidoneaclocal $ACLOCAL_OPTS || exit 1autoheader || exit 1autoconf || exit 1automake --add-missing --include-deps --foreign || exit 1
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -