The default "make" would be quite quiet, but still conveniently print
the CFLAGS. The explicit "make V=0" was intended to be identical, (only
not printing the message about V=1 but was broken in that it left the
CFLAGS off). Fix this.
endif
# The user has explicitly enabled quiet compilation.
ifeq ($(V),0)
-quiet = @printf " $1 $@\n"; $($1)
+quiet = @printf " $1 $2 $@\n"; $($1)
endif
# Otherwise, print the full command line.
quiet ?= $($1)