Lines Matching refs:origin
4167 is exactly equivalent to this (*note The `origin' Function: Origin
4170 ifeq ($(origin FOO), undefined)
4445 `origin' Function: Origin Function.):
4451 ifeq ($(origin FOO), undefined)
5728 such as `origin', to multiple values in one step:
5730 o = $(call map,origin,o map MAKE)
5843 8.9 The `origin' Function
5846 The `origin' function is unlike most other functions in that it does
5850 The syntax of the `origin' function is:
5852 $(origin VARIABLE)
5868 Note that if you have redefined a default variable, the `origin'
5869 function will return the origin of the later definition.
5907 ifeq "$(origin bletch)" "environment"
5918 ifneq "$(findstring environment,$(origin bletch))" ""
5922 Here the redefinition takes place if `$(origin bletch)' returns
5932 The `flavor' function is unlike most other functions (and like `origin'