diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-07-11 11:27:34 +0200 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-07-11 11:27:34 +0200 |
commit | 7f841018c294bb2c0cf33c44aaf1951ef31549d1 (patch) | |
tree | 045c74056e010aaedd6aa9cd902322f2e2507b34 /Makefile | |
parent | afe8796bfad401ef48771361b0e49716a8e8ee0a (diff) |
make: help: consolidate <toolnames> to <tool>
In some part of the help text, we speak about <toolnames> in some
other <toolname>. Lets consolidate this to <tool> to avoid any
possible confusion.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -325,20 +325,20 @@ cscope: help: $(Q)echo "$(bold)Available tools from the toolkit:$(normal)" - $(Q)echo " <toolnames>:={$(TOOLS)}" + $(Q)echo " <tool>:={$(TOOLS)}" $(Q)echo "$(bold)Targets for building the toolkit:$(normal)" $(Q)echo " all|toolkit - Build the whole toolkit" $(Q)echo " allbutcurvetun - Build all except curvetun" $(Q)echo " allbutmausezahn - Build all except mausezahn" - $(Q)echo " <toolname> - Build only one of the tools" + $(Q)echo " <tool> - Build only one of the tools" $(Q)echo "$(bold)Targets for cleaning the toolkit's build files:$(normal)" $(Q)echo " clean - Remove all build files" - $(Q)echo " <toolname>_clean - Remove only one of the tool's files" + $(Q)echo " <tool>_clean - Remove only one of the tool's files" $(Q)echo " distclean - Remove all build and build config files" $(Q)echo " mrproper - Remove all files not in source distribution" $(Q)echo "$(bold)Targets for installing the toolkit:$(normal)" $(Q)echo " install - Install the whole toolkit" - $(Q)echo " <toolname>_install - Install only one of the tools" + $(Q)echo " <tool>_install - Install only one of the tools" $(Q)echo "$(bold)Targets for removing the toolkit:$(normal)" $(Q)echo " uninstall - Remove the whole toolkit from the system" $(Q)echo " <toolname>_uninstall - Remove only one of the tools" |