autogen.sh
来自「在Linux/Unix环境下发包测试性能的工具」· Shell 代码 · 共 18 行
SH
18 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?