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 s...
GNU make manual 翻译( 一百六十四)
继续翻译 When you add to a variable's value with `+=', `make' acts essentially as if you had included the extra text in the initial definition of the variable. If you defined it first with `:=', ma...
GNU make manual 翻译( 九十六)
继续翻译 复制代码 4.5.6 Directory Search for Link Libraries ----------------------------------------- &...
GNU make manual 翻译( 一百五十)
继续翻译 5.8 Defining Canned Recipes =========================== When the same sequence of commands is useful in making various targets, you can define it as a canned sequence with the `define' direct...
GNU make manual 翻译( 九十八)
继续翻译 4.6 Phony Targets ================= A phony target is one that is not really the name of a file; rather it is just a name for a recipe to be executed when you make an explicit request. Th...
GNU make manual 翻译( 一百五十八)
继续翻译 The previous example shows two levels of nesting, but any number of levels is possible. For example, here are three levels: x = y y = z z = u a := $($($(x))) Here the...
GNU make manual 翻译( 一百六十二)
继续翻译 6.5 Setting Variables ===================== To set a variable from the makefile, write a line starting with the variable name followed by `=' or `:='. Whatever follows the `=' or `:=' on the...
GNU make manual 翻译( 一百二十三)
继续翻译 4.14 Generating Prerequisites Automatically =========================================== In the makefile for a program, many of the rules you need to write often say only that some object file...
GNU make manual 翻译( 一百五十二)
继续翻译 5.9 Using Empty Recipes ======================= It is sometimes useful to define recipes which do nothing. This is done simply by giving a recipe that consists of nothing but whitespace. Fo...
GNU make manual 翻译( 一百七十八)
继续翻译 7 Conditional Parts of Makefiles ******************************** A "conditional" directive causes part of a makefile to be obeyed or ignored depending on the values of variables. Conditiona...
本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。