Lines Matching refs:subst
2574 generate text.g -$(subst output,,$@) > $@
2586 for an explanation of the `subst' function.
4287 `subst' function (*note Functions for String Substitution and Analysis:
4292 y = $(subst 1,2,$(x))
4298 works: `$($($(z)))' expands to `$($(y))' which becomes `$($(subst
5146 `$(subst a,b,$(x))', not `$(subst a,b,${x})'. This is because it is
5167 bar:= $(subst $(space),$(comma),$(foo))
5170 Here the `subst' function replaces each space with a comma, through the
5181 `$(subst FROM,TO,TEXT)'
5186 $(subst ee,EE,feet on the street)
5381 Here is a realistic example of the use of `subst' and `patsubst'.
5389 such as `src:../headers'. First, the `subst' function is used to
5392 $(subst :, ,$(VPATH))
5399 override CFLAGS += $(patsubst %,-I%,$(subst :, ,$(VPATH)))
5714 pathsearch = $(firstword $(wildcard $(addsuffix /$(1),$(subst :, ,$(PATH)))))