Lines Matching defs:dep
52 struct arg_list *rnames, *dep;
284 FILE *fe = xfopen("modules.dep", "r");
306 // Finds dependencies for modules from the modules.dep file.
311 FILE *fe = xfopen("modules.dep", "r");
323 if ((mod->flags & MOD_NDDEPS) && !mod->dep) {
325 llist_add(&mod->dep, xstrdup(line));
332 llist_add_tail(&mod->dep, xstrdup(tok));
403 if (!FLAG(q)) error_msg("module %s not found in modules.dep", m->name);
407 if (!FLAG(r)) m->dep = llist_rev(m->dep);
409 while (m->dep) {
414 fn = llist_popme(&m->dep);
483 // modules.dep processing for dependency check.