Home | History | Annotate | Download | only in core

Lines Matching defs:list

18 # Clears a list of variables using ":=".
21 # $(call clear-var-list,A B C)
27 # $(1): list of variable names to clear
29 define clear-var-list
34 # Copies a list of variables into another list of variables.
35 # The target list is the same as the source list, but has
39 # $(call copy-var-list, PREFIX, A B)
45 # $(2): list of variable names to copy
47 define copy-var-list
52 # Moves a list of variables into another list of variables.
59 # $(call move-var-list,SRC,DST,A B)
68 # $(3): list of variable names to move
70 define move-var-list
112 # Walks through the list of variables, each qualified by the prefix,
126 # $(2): list of variables to check
138 # get list of inherited words; if not empty:
145 # $(3): list of variable names
151 $(eval ### "Get the list of nodes that this variable inherits") \
182 # $(3): list of node variable names
184 # _include_stack contains the list of included files, with the most recent files first.
187 $(call clear-var-list, $(3))
194 $(call copy-var-list, $(1).$(2), $(3))
195 $(call clear-var-list, $(3))
216 # $(2): list of makefiles representing nodes to import
217 # $(3): list of node variable names
237 # $(1): output list variable name, like "PRODUCTS" or "DEVICES"
238 # $(2): list of makefiles representing nodes to import
239 # $(3): list of node variable names
249 $(call move-var-list,$(_node_import_context).$(_in),$(1).$(_in),$(3)) \