commit - 1e8e92ac2d75359a71ecf7dac05c51b263bae412
commit + 4b5119b611fc1c0c7813fc0641dd23883c8cb9b4
blob - 204a28eb27da6d20156817cbe8123ad548d254d9
blob + 4c0063b2d7535ecd383791f284409a160048c0bf
--- make/make.c
+++ make/make.c
return 0;
}
-help_files (prefix, sc)
+help_files (prefix, sc, v)
struct path *prefix;
struct scope *sc;
{
printf ("%-*s- %s\n", n < 30 ? 30 - n : 0, "", f->help);
}
+ if (!v)
+ return 0;
+
for (sub = sc->dir->subdirs; sub != NULL; sub = sub->next) {
new_prefix = parse_subdir (prefix, sub);
help_files (new_prefix, sub);
return 0;
}
-help (prefix, sc)
+help (prefix, sc, v)
struct path *prefix;
struct scope *sc;
{
fputs ("\nOPTIONS:\n", stderr);
fputs ("-C dir - chdir(dir)\n", stderr);
fputs ("-f file - read `file` instead of \"" MAKEFILE "\"\n", stderr);
- fputs ("-h - print this page\n", stderr);
+ fputs ("-h - print help page\n", stderr);
+ fputs ("-hv - print help page, recursively\n", stderr);
fputs ("-p - dump tree\n", stderr);
fputs ("-pv - dump tree, recursively\n", stderr);
fputs ("-v - verbose output\n", stderr);
help_macros (sc);
fputs ("\nTARGETS:\n", stderr);
- help_files (prefix, sc);
+ help_files (prefix, sc, v);
return 1;
}
errx (1, "failed to find or parse makefile");
if (dohelp)
- return help (path, sc);
+ return help (path, sc, verbose);
if (pr) {
print_sc (path, sc, verbose);