Home | History | Annotate | Download | only in unit-tests

Lines Matching refs:target

3 # Demonstrate that an inference rule is considered the main target if its
7 : Making ${.TARGET} from ${.IMPSRC}.
9 # At this point, the target '.1.2' is a normal target.
10 # Since it is the first target in the first dependency declaration,
11 # it becomes the main target.
14 : Making ${.TARGET}
18 # Declaring both '.1' and '.2' as suffixes turns the '.1.2' target into an
19 # inference rule (OP_TRANSFORM). As a side effect, this target is no longer
20 # a candidate for the main target. Therefore the next target is selected as
21 # the main target, which in this case is 'next-main'.