Lines Matching refs:target
12 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
13 dot-target = $(dir $@).$(notdir $@)
18 depfile = $(subst $(comma),_,$(dot-target).d)
21 # filename of target with directory and extension stripped
218 # target, or command line has changed
241 # Find any prerequisites that is newer than target or that does not exist.
250 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd)
256 scripts/basic/fixdep $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp;\
258 mv -f $(dot-target).tmp $(dot-target).cmd)
268 # why - tell why a a target got build
271 # (1) - due to target is PHONY
272 # (2) - due to target missing
276 # (6) - due to target not in $(targets)
278 # (2) No target, so we better build it
279 # (3) Prerequisite is newer than target
280 # (4) The command line stored in the file named dir/.target.cmd
283 # (5) No dir/.target.cmd file (used to store command line)
284 # (6) No dir/.target.cmd file and target not listed in $(targets)
288 $(if $(filter $@, $(PHONY)),- due to target is PHONY, \
300 - due to target missing \