Home | History | Annotate | Download | only in make

Lines Matching defs:targets

705  * During Suff_AddSuffix, search through the list of existing targets and find
706 * if any of the existing targets can be turned into a transformation rule.
784 * Look at all existing targets to see if adding this suffix will make one
785 * of the current targets mutate into a suffix rule.
787 * This is ugly, but other makes treat all targets that start with a '.' as
1311 * expressions or file wildcards into actual targets.
1653 CandidateList *sources, CandidateList *targets)
1671 Lst_Append(targets, targ);
1677 CandidateList *sources, CandidateList *targets)
1681 if (!Lst_IsEmpty(targets) || nullSuff == NULL)
1703 Lst_Append(targets, targ);
1753 * Locate implicit dependencies for regular targets.
1767 * List of targets to which things can be transformed.
1770 CandidateList targets = LST_INIT;
1806 FindDepsRegularKnown(name, nameLen, gn, &sources, &targets);
1809 FindDepsRegularUnknown(gn, name, &sources, &targets);
1823 if (targets.first != NULL)
1824 targ = targets.first->datum;
1943 while (RemoveCandidate(&sources) || RemoveCandidate(&targets))
1947 CandidateSearcher_MoveAll(cs, &targets);
1967 * graph, which may pass through nonexistent targets, to an existing target.