zoukankan      html  css  js  c++  java
  • GNU make manual 翻译(六十二)

    继续翻译

       If that special target is defined then in between the two phases mentioned above, right at the end of the read-in phase, all the prerequisites of the targets defined after the special target are  expanded a _second time_.  In most circumstances this secondary   expansion will have no effect, since all variable and function references will have been expanded during the initial parsing of the makefiles.  In order to take advantage of the secondary expansion phase of the parser, then, it's necessary to _escape_ the variable or function reference in the makefile.  In this case the first expansion   merely un-escapes the reference but doesn't expand it, and expansion is  left to the secondary expansion phase.  For example, consider this  
    makefile:                        
                            
         .SECONDEXPANSION:                        
         ONEVAR = onefile                        
         TWOVAR = twofile                        
         myfile: $(ONEVAR) $$(TWOVAR)                        

    如果这个特殊的 目的被定义了,那么在前面提到的两个阶段种,在读取阶段接受市,所有在此特殊目的之后的目的,都会被进行第二次扩展。

    在大多数情况下,这个二次扩展没有什么效果,因为所有的变量和函数都会在初始的解析中被扩展过了。

    为了获得解析阶段二次扩展的好处,有必要对变量或函数参照进行转义(_escape_)。

    在这种情况下,第一次扩展对参照进行反转义(un-escape),但是并不扩展它,扩展将被留在第二次扩展阶段中。例如,考虑如下的 makefile:

              .SECONDEXPANSION:

               ONEVAR =onefile

               TOWVAR = twofile

               myfile: $(ONEVAR)  $$(TWOVAR)

    后文待续

  • 相关阅读:
    《jQuery实战(第二版)》读书笔记
    软件测试对于代码安全的诸多事宜
    关于Maven的安装及初步使用
    Windows下GIT安装与使用(上传远程端)
    白盒测试
    关于VS2013的编码的UI测试。
    闰年检验
    等价类划分例子中的些许添加
    软件测试技术第二周课堂等价类习题
    软件测试技术第一周课堂随笔记录
  • 原文地址:https://www.cnblogs.com/gaojian/p/2688401.html
Copyright © 2011-2022 走看看