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

    继续翻译

    3 Writing Makefiles                        
    *******************                        
                            
    The information that tells `make' how to recompile a system comes from                        
    reading a data base called the "makefile".                        
                            
    3.1 What Makefiles Contain                        
    ==========================                        
                            
    Makefiles contain five kinds of things: "explicit rules", "implicit 
    rules", "variable definitions", "directives", and "comments".  Rules,variables, and directives are described at length in later chapters.                        
                            
       * An "explicit rule" says when and how to remake one or more files,
         called the rule's "targets".  It lists the other files that the 
         targets depend on, called the "prerequisites" of the target, and 
         may also give a recipe to use to create or update the targets.                        
         *Note Writing Rules: Rules.                        

    3 制作 makefile

    告诉make 如何重新编译一个系统的数据信息被称为 makefile。

    3.1 makefile 包含什么

    makefile包含五种东西:显式规则,隐式规则,变量定义,指令,注释。

    规则,变量和指令将在后面的章节中展开详细论述。

    *Note Writing Rules: Rules

    后文待续

  • 相关阅读:
    Flume基础(一):概述
    Hive高级(2):优化(2) 表的优化
    ospf命令
    Verizon 和某 BGP 优化器如何在今日大范围重创互联网
    BGP数据中心鉴别方法
    多线BGP鉴定
    mpls ldp neighbor 和loopbak
    ospf默认路由
    ospf
    ubuntu cloud init获取元数据失败
  • 原文地址:https://www.cnblogs.com/gaojian/p/2684272.html
Copyright © 2011-2022 走看看