diff --git a/build/root/Makefile b/build/root/Makefile index 2e62c35b5ed..1ed4bd1ce11 100644 --- a/build/root/Makefile +++ b/build/root/Makefile @@ -66,9 +66,9 @@ define ALL_HELP_INFO # Build code. # # Args: -# WHAT: Directory names to build. If any of these directories has a 'main' -# package, the build will produce executable files under $(OUT_DIR)/bin. -# If not specified, "everything" will be built. +# WHAT: Directory or Go package names to build. If any of these directories +# has a 'main' package, the build will produce executable files under +# $(OUT_DIR)/bin. If not specified, "everything" will be built. # "vendor//" is accepted as alias for "/". # "ginkgo" is an alias for the ginkgo CLI. # GOFLAGS: Extra flags to pass to 'go' when building. @@ -82,9 +82,9 @@ define ALL_HELP_INFO # make all # make all WHAT=cmd/kubelet GOFLAGS=-v # make all DBG=1 -# Note: Specify DBG=1 for building unstripped binaries, which allows you to use code debugging -# tools like delve. When DBG is unspecified, it defaults to "-s -w" which strips debug -# information. +# Note: Specify DBG=1 for building unstripped binaries, which allows you to +# use code debugging tools like delve. When DBG is unspecified, it defaults +# to "-s -w" which strips debug information. endef .PHONY: all ifeq ($(PRINT_HELP),y)