autogen.sh
来自「Linux下的基于X11的图形开发环境。」· Shell 代码 · 共 35 行
SH
35 行
# autogen.sh## invoke the auto* tools to create the configureation system# move out configure.inif ! test -f configure.in; then echo "copying out configure.in" ln -s makefiles/configure.infi# move out the macros and run aclocalif ! test -f acinclude.m4; then echo "copying configure macros" ln -s makefiles/acinclude.m4 .fiaclocal# build the configure scriptautoconf# set up libtoollibtoolize --force# copy up our Makefile template and invoke automakeif ! test -f Makefile.am; then echo "copying automake template" ln -s makefiles/Makefile.am .fiautomake --foreign --add-missing# and finally invoke our new configure./configure $*# end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?