From 3ac5ffc18873d50c2bce3aa6e9ad5f6988ff5bef Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 29 Oct 2018 08:48:38 -0700 Subject: [PATCH] Use V=1 for verbosity, easier to type --- programs/bpf/c/makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/programs/bpf/c/makefile b/programs/bpf/c/makefile index 04c1c8bee3..a19ff77ef7 100644 --- a/programs/bpf/c/makefile +++ b/programs/bpf/c/makefile @@ -1,5 +1,8 @@ +ifneq ($(V),1) _@ :=@ +endif + INC_DIRS := -I. SRC_DIR := ./src OUT_DIR := ./out @@ -44,8 +47,8 @@ help: @echo '' @echo 'User settings' @echo ' - The following setting are overridable on the command line, default values shown' - @echo ' - Verbosity, for verbose: '_@=':' - @echo ' - _@=$(_@)' + @echo ' - Show commands:' + @echo ' V=1' @echo ' - List of include dirs:' @echo ' INC_DIRS=$(INC_DIRS)' @echo ' - Location of source files:'