Lines Matching full:make
22 # Use $(intcmp ...) if supported. (Make >= 4.4)
70 # Make 4.2 or later can read a file by using its builtin function.
110 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
112 # $(Q)$(MAKE) $(build)=dir
116 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=
118 # $(Q)$(MAKE) $(clean)=dir
133 # GNU Make automatically deletes the target if it has already been changed by
134 # the interrupted recipe. So, you can safely stop the build by Ctrl-C (Make
138 # $ make >&2 | tee log
139 # Make dies with SIGPIPE before cleaning the targets.
143 # Make deletes the target when it catches SIGHUP, SIGINT, SIGQUIT, SIGTERM.
165 # string if equal. User may override this check using make KBUILD_NOCMDDEP=1
177 # (needed for make)
179 # (needed for make)
182 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
201 printf '%s\n' 'savedcmd_$@ := $(make-cmd)' > $(dot-target).cmd
208 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\
218 # enabled by make V=2
263 # .NOTINTERMEDIATE is more correct, but only available on newer Make versions.
264 # Make 4.4 introduced .NOTINTERMEDIATE, and it appears in .FEATURES, but the
265 # global .NOTINTERMEDIATE does not work. We can use it on Make > 4.4.
266 # Use .SECONDARY for older Make versions, but "newer-prereq" cannot detect