GNU make manual 翻译(三十一)
生活随笔
收集整理的這篇文章主要介紹了
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
后文待續
轉載于:https://www.cnblogs.com/gaojian/archive/2012/09/14/2684272.html
總結
以上是生活随笔為你收集整理的GNU make manual 翻译(三十一)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux中如何让进程(或正在运行的程序
- 下一篇: 用C语言写PHP扩展 linux