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

    继续翻译

    4.12 Static Pattern Rules
    =========================
    
    Static pattern rules are rules which specify multiple targets and
    construct the prerequisite names for each target based on the target
    name.  They are more general than ordinary rules with multiple targets
    because the targets do not have to have identical prerequisites.  Their
    prerequisites must be _analogous_, but not necessarily _identical_.
    
    4.12.1 Syntax of Static Pattern Rules
    -------------------------------------
    
    Here is the syntax of a static pattern rule:
    
         TARGETS ...: TARGET-PATTERN: PREREQ-PATTERNS ...
                 RECIPE
                 ...
    
    The TARGETS list specifies the targets that the rule applies to.  The
    targets can contain wildcard characters, just like the targets of
    ordinary rules (*note Using Wildcard Characters in File Names:
    Wildcards.).

    4.12 静态模式规则

    =========================

    静态模式规则是那些制定了多个目的并且构建为每个目的,利用目的名字来指定前提条件名字的规则。

    它们比普通的带有多个目的的规则更加地具备通用性,因为不需要拥有唯一名字的前提条件。这种规则的前提条件名字必须是可比拟性的,但不必是唯一性的。

    4.12.1 静态模式规则的语法
    -------------------------------------

    下面是静态模式规则的语法:

    TARGETS ...: TARGET-PATTERN: PREREQ-PATTERNS ...
    RECIPE
    ...

    目的列表指出规则要应用的目的。目的可以包含通配符,就像普通规则的目的一样(*note Using Wildcard Characters in File Names: Wildcards.)

    后文待续

  • 相关阅读:
    jquery动态生成html代码绑定事件
    jQuery中如何给动态添加的元素绑定事件
    JAVA基础面试(一)
    JAVA基础面试(二)
    JAVA面试之集合框架(三)
    JAVA基础面试(四4)
    JAVA基础面试(五5)
    JAVA基础面试(五)
    JavaWeb面试(六)
    JavaWeb面试(七)
  • 原文地址:https://www.cnblogs.com/gaojian/p/2701922.html
Copyright © 2011-2022 走看看