Lines Matching full:make
8 The basic idea was inspired by Make. When we look at Make, we notice sort of
29 Then, Make analyzes the dependency graph and determines the targets to be
53 Like in Make, a variable in Kconfig works as a macro variable. A macro
96 Like Make, Kconfig provides several built-in functions. Every function takes a
99 In Make, every built-in function takes at least one argument. Kconfig allows
142 Make vs Kconfig
145 Kconfig adopts Make-like macro language, but the function call syntax is
148 A function call in Make looks like this::
156 to make "info" function print " hello", you can write like follows::
169 Make - for example, $(subst .c, .o, $(sources)) is a typical mistake; it
172 In Make, a user-defined function is referenced by using a built-in function,
180 In Make, some functions treat commas verbatim instead of argument separators.