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)

    后文待续

  • 相关阅读:
    聊聊es6中的解构
    JavaScript 中的面向对象编程
    TypeScript 中的类型保护
    7个你应该知道的 JavaScript 原生错误类型
    使用JavaScript策略模式校验表单
    nodejs如何解决高并发?
    nodejs核心模块有哪些?
    Dungeon Master
    Gold Balanced Lineup
    poj 2513Colored Sticks
  • 原文地址:https://www.cnblogs.com/gaojian/p/2688401.html
Copyright © 2011-2022 走看看