Current build console output is exeedingly verbose.
Request is to generate makefiles using verbosity-limiting macros a-la linux kernel or automake.
make V=1 results in former verbose output
Example of verbosity-limiting macro definition and use.
V_CC = $(_v_CC_$(V))
_v_CC_ = $(_v_CC_$(DEFAULT_VERBOSITY))
_v_CC_0 = @echo " C6000 Compiler : " $<;
DEFAULT_VERBOSITY = 0
axctrl_base.obj: /home/sw/dsp/axctrl_base.c $(GEN_OPTS) $(GEN_SRCS)
$(V_CC)"/opt/TI/ccsv5/tools/compiler/c6000/bin/cl6x" ... all the rest of the commandline
Resulting output is one line when V=0 or not defined:
C6000 Compiler : /home/sw/dsp/axctrl_base.c
Errors and warnings are much easier to see.
As opposed to 15 wrapped lines on a 132 column terminal for the verbose version.
