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

📄 initjamfile.m4

📁 经典开源游戏glest的源代码
💻 M4
字号:
#----------------------------------------------------------------------------#  AC_INIT_JAM#    This rule fixes several issues related to autoconf being make centric#----------------------------------------------------------------------------AC_DEFUN([AC_INIT_JAM],    [     AC_INIT_JAMFILE     AC_OUTPUT_INSTALLDIRS     AC_FIX_INSTALL])#----------------------------------------------------------------------------#  AC_INIT_JAMFILE#    This rule let's config.status create a wrapper Jamfile in case configure#    has been invoked from a directory outside the source directory#----------------------------------------------------------------------------AC_DEFUN([AC_INIT_JAMFILE],    [AC_CONFIG_COMMANDS([Jamfile],      [AS_IF([test ! -f "${ac_top_builddir}Jamfile"],	[echo Installing Jamfile wrapper.	 echo "# This file was automatically create by config.status" > Jamfile	 echo "TOP ?= $ac_top_srcdir ;" >> Jamfile	 echo "top_builddir ?= . ;" >> Jamfile	 echo "include \$(TOP)/Jamfile ;" >> Jamfile])])])

⌨️ 快捷键说明

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