Lines Matching defs:target
35 void print_dependencies(register Name target, register Property line);
36 static void print_deps(register Name target, register Property line);
37 static void print_more_deps(Name target, Name name);
40 static void print_forest(Name target);
43 static void print_rule(register Name target);
44 static void print_rec_info(Name target);
49 * print_dependencies(target, line)
51 * Print all the dependencies of a target. First print all the Makefiles.
56 * target The target we print dependencies for
65 print_dependencies(register Name target, register Property line)
97 print_deps(target, line);
99 print_more_deps(target, init);
100 print_more_deps(target, done);
103 print_forest(target);
108 * print_more_deps(target, name)
114 * target Target built during make run
115 * name Special target to print dependencies for
120 print_more_deps(Name target, Name name)
127 (void) printf("%s:\t", target->string_mb);
140 * print_deps(target, line, go_recursive)
143 * indicates whether or not the target is recursive.
146 * target target to print dependencies for
154 print_deps(register Name target, register Property line)
158 if ((target->dependency_printed) ||
159 (target == force)) {
162 target->dependency_printed = true;
176 print_filename(target);
179 print_rec_info(target);
252 * Test if we should print the dependencies of this target.
284 print_forest(Name target)
290 if (np->is_target && !np->has_parent && np != target) {
328 print_rule(register Name target)
333 if (((line= get_prop(target->prop, line_prop)) == NULL) ||
337 print_dependencies(target, line);
344 * If target is recursive, print the following to standard out:
348 print_rec_info(Name target)
355 rp = find_recursive_target(target);