> I am a new beginner of gnu Make. in some cases, I fell that it will
> help if Make can print the executing shell command even suppressed,
> for example, to identify problem more easy.
>
> Since it seems that Make doesn't have this flag, I tried to change code.
> the code diff is in below and happy to hear what your idea.

It is better to change the make file instead, e.g replace the @ that's
suppressing printing of the command with $A and set A ?= @ somewhere in
the makefile.  Then
 make A=
shall print commands while make shall, by default, suppress them.

        Eddy.

_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to