[VOL-5358] - misc edits needed to support repo:onf-make use.

config.mk
---------
  - Simple copyright notice update.

makefiles/commands/include.mk
makefiles/commands/kubectl/include.mk
-------------------------------------y
  - Added a central installer for the kubectl command.
  - Rename commands 'help::' target to commands-help.
  - Default help is growing long in the stream.

makefiles/commands/kail/include.mk
makefiles/commands/pre-commit/
makefiles/commands/tox/tox.mk
----------------------------------
  - Update copyright notice
  - Changed default help target to target commands-help and define
    {command-name}-help for individual targets.  Default help target
    is beginning to grow long displaying everything.

makefiles/docker/include.mk
---------------------------
  - Update include docker config file (directory mount paths) to also load
    the config from lf/local/docker/config/include.mk to avoid storing
    all custom repo configs in repo:onf-make.

Signed-off-by: Joey Armstrong <jarmstrong@linuxfoundation.org>
Change-Id: I075be7c710bd7308ce258109455cc2ea2a3ae780
diff --git a/makefiles/commands/tox/tox.mk b/makefiles/commands/tox/tox.mk
index e542d6a..c0ad741 100644
--- a/makefiles/commands/tox/tox.mk
+++ b/makefiles/commands/tox/tox.mk
@@ -28,7 +28,7 @@
 ## -----------------------------------------------------------------------
 ## Intent: Invoke the tox command
 ## -----------------------------------------------------------------------
-tox run-tox : tox-version
+tox run-tox tox-run : tox-version
 	$(activate) && tox $(tox-args)
 
 ## -----------------------------------------------------------------------
@@ -39,15 +39,12 @@
 
 ## -----------------------------------------------------------------------
 ## -----------------------------------------------------------------------
-help ::
+commands-help :: tox-help
+
+.PHONY: tox-help
+tox-help ::
 	@printf '  %-33.33s %s\n' 'tox' \
 	  'Invoke tox (python test automation)'
-	@printf '  %-33.33s %s\n' 'tox-help' \
-	  'Display extended target help (tox-*)'
-
-## -----------------------------------------------------------------------
-## -----------------------------------------------------------------------
-tox-help ::
 	@printf '  %-33.33s %s\n' 'tox-run' \
 	  'Self documenting alias for command tox'