📄 autogen.sh
字号:
#!/bin/sh#echo "Generating build information using aclocal, automake and autoconf"echo "This may take a while ..."# Touch the timestamps on all the files since CVS messes them updirectory=`dirname $0`touch $directory/configure.in# Regenerate configuration filesaclocalautomake --foreign --include-deps --add-missing --copyautoconf(cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf)# Run configure for this platform#./configure $*echo "Now you are ready to run ./configure"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -