📄 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 + -