GNU make manual 翻译( 一百三十二)
继续翻译 5.2 Recipe Echoing ================== Normally `make' prints each line of the recipe before it is executed. We call this "echoing" because it gives the appearance that you are typing the line...
GNU make manual 翻译( 一百四十)
继续翻译 5.5 Errors in Recipes ===================== After each shell invocation returns, `make' looks at its exit status. If the shell completed successfully (the exit status is zero), the next line ...
GNU make manual 翻译( 一百四十一)
继续翻译 5.6 Interrupting or Killing `make' ================================== If `make' gets a fatal signal while a shell is executing, it may delete the target file that the recipe was supposed to u...
GNU make manual 翻译( 一百四十六)
继续翻译 5.7.3 Communicating Options to a Sub-`make' ------------------------------------------- Flags such as `-s' and `-k' are passed automatically to the sub-`make' through the variable `MAKEFLAGS'...
GNU make manual 翻译( 一百五十三)
继续翻译 6 How to Use Variables ********************** A "variable" is a name defined in a makefile to represent a string of text, called the variable's "value". These values are substituted by expli...
GNU make manual 翻译( 一百五十四)
继续翻译 6.1 Basics of Variable References ================================= To substitute a variable's value, write a dollar sign followed by the name of the variable in parentheses or braces: either...
GNU make manual 翻译( 一百五十六)
继续翻译 6.3 Advanced Features for Reference to Variables ================================================ This section describes some advanced features you can use to reference variables in more flex...
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 翻译(二十)
继续翻译 复制代码 2.4 Variables Make Makefiles Simpler ==================================== &nbs...
本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。