Lines Matching refs:depth
42 extern int try_implicit_rule PARAMS ((struct file *file, unsigned int depth));
63 static int update_file PARAMS ((struct file *file, unsigned int depth));
64 static int update_file_1 PARAMS ((struct file *file, unsigned int depth));
65 static int check_dep PARAMS ((struct file *file, unsigned int depth, FILE_TIMESTAMP this_mtime, int *must_make_ptr));
277 DEPTH is the depth in recursions of this function.
286 update_file (struct file *file, unsigned int depth)
309 status |= update_file_1 (f, depth);
339 status |= update_file (d->file, depth + 1);
373 update_file_1 (struct file *file, unsigned int depth)
422 ++depth;
456 if (try_implicit_rule (file, depth))
511 dep_status |= check_dep (d->file, depth, this_mtime, &maybe_make);
572 dep_status |= update_file (d->file, depth);
609 --depth;
621 --depth;
625 if (depth == 0 && keep_going_flag
697 print_spaces (depth);
704 /* Here depth returns to the value it had when we were called. */
705 depth--;
730 print_spaces (depth);
938 check_dep (struct file *file, unsigned int depth,
944 ++depth;
952 dep_status = update_file (file, depth);
966 if (try_implicit_rule (file, depth))
1020 dep_status |= check_dep (d->file, depth, this_mtime,