diff options
author | Rob Landley <rob@landley.net> | 2020-08-07 02:25:50 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-08-07 02:25:50 -0500 |
commit | efb8060a591b6ed13c16c4034db43652e03f90d5 (patch) | |
tree | bd8d2bcb3ea994a1d9bbcf0481d8185d16c9ef2e /Makefile | |
parent | 1d67afafcec61ef5e0bb743b174a450d1c4c7a1e (diff) | |
download | toybox-efb8060a591b6ed13c16c4034db43652e03f90d5.tar.gz |
People have been having trouble finding the toybox web page (despite being
the first google hit for "android toybox"), and want toybox --help to
mention it. I was referred to https://github.com/landley/toybox/issues/50
So add a URL to toybox --help. While I was there, make unrecognized commands
(like toybox -?) suggest "toybox --help", move the install instructions
to the FAQ page (with a second link from toybox --help), and generally
tighten up the help text. Also, "toybox -*" is no longer a synonym for --long.
Oh, and I fixed some build dependencies when Config.in changes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -13,13 +13,11 @@ all: toybox KCONFIG_CONFIG ?= .config -toybox_stuff: $(KCONFIG_CONFIG) *.[ch] lib/*.[ch] toys/*/*.c scripts/*.sh - -toybox generated/unstripped/toybox: toybox_stuff +toybox generated/unstripped/toybox: $(KCONFIG_CONFIG) *.[ch] lib/*.[ch] toys/*/*.c scripts/*.sh Config.in scripts/make.sh .PHONY: clean distclean baseline bloatcheck install install_flat \ - uinstall uninstall_flat tests help toybox_stuff change \ + uinstall uninstall_flat tests help change \ list list_working list_pending root run_root include kconfig/Makefile |