From d18b41345a0dcd8ee662dc656aecc69ae917744d Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Tue, 19 Mar 2024 20:47:15 +0100 Subject: [PATCH] GNUmakefile: help: Hide variables not meant for users Signed-off-by: Alejandro Colomar --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7baa19bbc..bebec00ba 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -50,8 +50,8 @@ help: $(info $(INFO_) $$ find GNUmakefile share/mk/configure -type f \) $(info $(INFO_) | sort \) $(info $(INFO_) | xargs grep '^[^[:space:]].*=' \) - $(info $(INFO_) | sed 's/=.*/=/';) - $(info ) + $(info $(INFO_) | sed 's/=.*/=/' \) + $(info $(INFO_) | grep -v -e ':DEFAULT_.*=' -e ':MAKEFILE_.*INCLUDED :=';) $(info ) $(info $(INFO_)To see a list of dependencies, run:) $(info $(INFO_) $$ find share/mk/configure/build-depends -type f \) -- 2.47.2