Lines Matching full:make
22 # Use $(intcmp ...) if supported. (Make >= 4.4)
71 # Make 4.2 or later can read a file by using its builtin function.
111 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
113 # $(Q)$(MAKE) $(build)=dir
117 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.dtbinst obj=
119 # $(Q)$(MAKE) $(dtbinst)=dir
123 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=
125 # $(Q)$(MAKE) $(clean)=dir
140 # GNU Make automatically deletes the target if it has already been changed by
141 # the interrupted recipe. So, you can safely stop the build by Ctrl-C (Make
145 # $ make >&2 | tee log
146 # Make dies with SIGPIPE before cleaning the targets.
150 # Make deletes the target when it catches SIGHUP, SIGINT, SIGQUIT, SIGTERM.
172 # string if equal. User may override this check using make KBUILD_NOCMDDEP=1
184 # (needed for make)
186 # (needed for make)
189 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
208 printf '%s\n' 'savedcmd_$@ := $(make-cmd)' > $(dot-target).cmd
215 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\
225 # enabled by make V=2
270 # .NOTINTERMEDIATE is more correct, but only available on newer Make versions.
271 # Make 4.4 introduced .NOTINTERMEDIATE, and it appears in .FEATURES, but the
272 # global .NOTINTERMEDIATE does not work. We can use it on Make > 4.4.
273 # Use .SECONDARY for older Make versions, but "newer-prereq" cannot detect