aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2024-03-19 20:47:15 +0100
committerAlejandro Colomar <alx@kernel.org>2024-03-19 21:54:40 +0100
commitd18b41345a0dcd8ee662dc656aecc69ae917744d (patch)
tree039058b7070af869a067837b33ca41499b02d303
parent27e35f39dfbed7aaaa394b5d31f04662741ac962 (diff)
downloadman-pages-d18b41345a0dcd8ee662dc656aecc69ae917744d.tar.gz
GNUmakefile: help: Hide variables not meant for users
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7baa19bbc6..bebec00bad 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 \)