Home | History | Annotate | Download | only in pending

Lines Matching defs:dep

61   struct arg_list *rnames, *dep;
291 FILE *fe = xfopen("modules.dep", "r");
314 // Finds dependencies for modules from the modules.dep file.
319 FILE *fe = xfopen("modules.dep", "r");
332 if ((mod->flags & MOD_NDDEPS) && (!mod->dep)) {
334 llist_add(&mod->dep, xstrdup(line));
341 llist_add_tail(&mod->dep, xstrdup(tok));
430 error_msg("module %s not found in modules.dep", m->name);
434 if (!(toys.optflags & FLAG_r)) m->dep = llist_rev(m->dep);
436 while (m->dep) {
441 fn = llist_popme(&m->dep);
511 // modules.dep processing for dependency check.