Lines Matching refs:TEXT
2184 `$(subst FROM,TO,TEXT)'
2185 Replace FROM with TO in TEXT.
2189 `$(patsubst PATTERN,REPLACEMENT,TEXT)'
2190 Replace words matching PATTERN with REPLACEMENT in TEXT.
2199 `$(findstring FIND,TEXT)'
2200 Locate FIND in TEXT.
2204 `$(filter PATTERN...,TEXT)'
2205 Select words in TEXT that match one of the PATTERN words.
2209 `$(filter-out PATTERN...,TEXT)'
2210 Select words in TEXT that _do not_ match any of the PATTERN words.
2219 `$(word N,TEXT)'
2220 Extract the Nth word (one-origin) of TEXT.
2224 `$(words TEXT)'
2225 Count the number of words in TEXT.
2229 `$(wordlist S,E,TEXT)'
2230 Returns the list of words in TEXT from S to E.
2288 `$(error TEXT...)'
2290 with the message TEXT.
2293 `$(warning TEXT...)'
2295 the message TEXT.
2312 `$(foreach VAR,WORDS,TEXT)'
2313 Evaluate TEXT with VAR bound to each word in WORDS, and
2322 `$(eval TEXT)'
2323 Evaluate TEXT then read the results as makefile commands. Expands