From 4d37426a3ab165c1b977835d492b0ed820d25aba Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Wed, 3 Jan 2024 21:34:16 -0800 Subject: [PATCH] Update Makefile comments --- build/root/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)