Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:stem

74       char *stem;
82 find the stem: the part of the filename that matches the %. */
83 stem = target + (p->suffix - p->target - 1);
86 /* Compare the text in the pattern before the stem, if any. */
87 if (stem > target && !strneq (p->target, target, stem - target))
90 /* Compare the text in the pattern after the stem, if any.
95 if (*p->suffix == stem[stemlen]
96 && (*p->suffix == '\0' || streq (&p->suffix[1], &stem[stemlen+1])))