- grep -v ^\.PHONY < Makefile

+ busybox.def.h
  BB_FEATURE_TRIVIAL_HELP
+ uname.c has an example of how BB_FEATURE_TRIVIAL_HELP
  is to be applied.
This commit is contained in:
John Beppu
2000-04-17 17:49:44 +00:00
parent 5a50def0f4
commit 91e581fa04
4 changed files with 11 additions and 8 deletions

View File

@ -43,6 +43,7 @@
static const char uname_usage[] =
"uname [OPTION]...\n\n"
#ifndef BB_FEATURE_TRIVIAL_HELP
"Print certain system information. With no OPTION, same as -s.\n\n"
"Options:\n"
"\t-a\tprint all information\n"
@ -52,7 +53,9 @@ static const char uname_usage[] =
"\t-s\tprint the operating system name\n"
"\t-p\tprint the host processor type\n"
"\t-v\tprint the operating system version\n";
"\t-v\tprint the operating system version\n"
#endif
;
static void print_element(unsigned int mask, char *element);