On Mon, 2021-10-25 at 22:28 +0200, Alejandro Colomar (man-pages) wrote: > Since I use '--warn-undefined-variables', and also to help > readability to someone who may not know about this usage and may > wonder what does that $(V) mean, I used the following: > > V := > $(V).SILENT:
Looks good. Something you might consider is using: V ?= instead of ":=" which would allow someone to run: V=1 make successfully (or put it into the environment in some other way).