]> git.ipfire.org Git - thirdparty/man-pages.git/commit
GNUmakefile: Remove help
authorAlejandro Colomar <alx@kernel.org>
Tue, 19 Mar 2024 16:54:52 +0000 (17:54 +0100)
committerAlejandro Colomar <alx@kernel.org>
Tue, 19 Mar 2024 16:56:27 +0000 (17:56 +0100)
commit3956a94213b6ed908ca299e7f426afee537133a6
tree3a5892b3cb2db1b0da9e239220573c7c1c829b1f
parent3e75efa1b7a6a3211df9af6bbe6087893b11019c
GNUmakefile: Remove help

It gets out of date easily, and it's always more accurate to actually
read the makefiles, or run a command that parses them for us.
In the case of .PHONY targets, or available variables, here are two
commands that can help:

$ make nothing -p \
| grep '^\.PHONY:' \
| tr ' ' '\n' \
| grep -v '^\.PHONY:' \
| sort;

$ grep -rho '^[^[:space:]].*=' GNUmakefile share/mk/configure/;

Signed-off-by: Alejandro Colomar <alx@kernel.org>
GNUmakefile