Home | History | Annotate | Download | only in make

Lines Matching refs:variable

31 # Function: Set variable value
33 # Set the given make variable to the given value.
36 # Function: Append variable value
38 # Append the given value to the given make variable.
41 # Function: IsDefined variable
43 # Check whether the given variable is defined.
46 # Function: IsUndefined variable
48 # Check whether the given variable is undefined.
51 # Function: VarOrDefault variable default-value
53 # Get the value of the given make variable, or the default-value if the variable
57 # Function: CheckValue variable
59 # Print the name, definition, and value of a variable, for testing make
71 # Copy the value of the variable 'src' to 'dst', taking care to not define 'dst'
72 # if 'src' is undefined. The destination variable must be undefined.
84 # Function: AssertEqual variable expected-value
86 # Check that the value of a variable is 'expected-value'.