Lines Matching refs:deps

135 			struct dep *deps, unsigned int cmds_started, char *commands,
302 struct dep *deps; in eval_makefile() local
365 deps = alloc_dep (); in eval_makefile()
366 deps->next = read_makefiles; in eval_makefile()
367 read_makefiles = deps; in eval_makefile()
368 deps->file = lookup_file (filename); in eval_makefile()
369 if (deps->file == 0) in eval_makefile()
370 deps->file = enter_file (xstrdup (filename)); in eval_makefile()
371 filename = deps->file->name; in eval_makefile()
372 deps->changed = flags; in eval_makefile()
374 deps->file->dontcare = 1; in eval_makefile()
465 struct dep *deps = 0; in eval() local
478 record_files (filenames, pattern, pattern_percent, deps, \ in eval()
1172 deps = alloc_dep (); in eval()
1173 deps->name = savestring (beg, end - beg + 1); in eval()
1176 deps = 0; in eval()
1240 for (d = suffix_file->deps; d != 0; d = d->next) in eval()
1248 for (d2 = suffix_file->deps; d2 != 0; d2 = d2->next) in eval()
1721 struct hash_table deps; in uniquize_deps() local
1724 hash_init (&deps, 500, dep_hash_1, dep_hash_2, dep_hash_cmp); in uniquize_deps()
1734 struct dep **dep_slot = (struct dep **) hash_find_slot (&deps, dep); in uniquize_deps()
1737 hash_insert_at (&deps, dep, dep_slot); in uniquize_deps()
1748 hash_free (&deps, 0); in uniquize_deps()
1871 struct dep *deps, unsigned int cmds_started, char *commands, in record_files() argument
1955 else if (deps) in record_files()
1960 this = nextf != 0 ? copy_dep_chain (deps) : deps; in record_files()
2007 free_dep_chain (f->deps); in record_files()
2008 f->deps = 0; in record_files()
2014 if (f->deps != 0) in record_files()
2016 struct dep **d_ptr = &f->deps; in record_files()
2046 f->deps = this; in record_files()
2085 f->deps = this; in record_files()
2125 if (deps) in record_files()
2126 deps->need_2nd_expansion = second_expansion; in record_files()
2127 create_pattern_rule (targets, target_percents, two_colon, deps, cmds, 1); in record_files()