📄 autogen.sh
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -