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

Lines Matching defs:tail

201 	struct dep *tail = read_makefiles;
209 while (d->next != tail)
246 struct dep *tail = read_makefiles;
247 /* Add them to the tail, after any MAKEFILES variable makefiles. */
248 while (tail != 0 && tail->next != 0)
249 tail = tail->next;
258 if (tail == 0)
261 tail->next = d;
262 tail = d;
264 if (tail != 0)
265 tail->next = 0;