Lines Matching refs:target
14 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
15 dot-target = $(dir $@).$(notdir $@)
20 depfile = $(subst $(comma),_,$(dot-target).d)
23 # filename of target with directory and extension stripped
235 # target, or command line has changed
258 # Find any prerequisites that is newer than target or that does not exist.
267 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:)
274 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).cmd;\
283 # why - tell why a a target got build
286 # (1) - due to target is PHONY
287 # (2) - due to target missing
291 # (6) - due to target not in $(targets)
293 # (2) No target, so we better build it
294 # (3) Prerequisite is newer than target
295 # (4) The command line stored in the file named dir/.target.cmd
298 # (5) No dir/.target.cmd file (used to store command line)
299 # (6) No dir/.target.cmd file and target not listed in $(targets)
303 $(if $(filter $@, $(PHONY)),- due to target is PHONY, \
315 - due to target missing \