⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 autogen.sh

📁 奇趣公司比较新的qt/emd版本
💻 SH
字号:
# autogen.sh## invoke the auto* tools to create the configureation system# move out configure.inif ! test -f configure.in; then  echo "copying configure.in"  ln -s makefiles/configure.in .fi# move out the macros and run aclocalif test ! -f acinclude.m4 -a -r makefiles/acinclude.m4; then  echo "copying configure macros"  ln -s makefiles/acinclude.m4 .fi# copy up our Makefile templateif ! test -f Makefile.am; then  echo "copying automake template"  ln -s makefiles/Makefile.am .fiecho "running aclocal"aclocal# libtool is named glibtool on MacOS Xfor LIBTOOLIZE in libtoolize glibtoolize nope; do  ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && breakdoneif test x$LIBTOOLIZE = xnope; then  echo "error: Could not find libtoolize in the path!"  echo "  You'll need to install a copy of libtool before continuing"  echo "  with the generation of the build system."  echo  exit 1fiecho "running $LIBTOOLIZE"$LIBTOOLIZE --automakeecho "running automake"automake --foreign --add-missingecho "building configure script"autoconf# and finally invoke our new configure./configure $*# end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -