摘要:
继续翻译 * A "directive" is an instruction for `make' to do something special while reading the makefile. These include: * Reading another makefile (*note Including Other Makefiles: Include.). ... 阅读全文
摘要:
继续翻译 * A "variable definition" is a line that specifies a text string value for a variable that can be substituted into the text later. The simple makefile example shows a variable definition for `objects' as a list of all object files (*note Variables Make Makefiles Simpler: V... 阅读全文
摘要:
继续翻译 * 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. *N 阅读全文
摘要:
继续翻译3 Writing Makefiles ******************* The information that tells `make' how to recompile a system comes from reading a data base called the "makefile". 3.... 阅读全文