>Is there a request that you have?

   I am looking for a make option/script/program which, when given a
   makefile
   and a target, outputs the list of non-make commands who will be
   executed by
   the makefile.

     For example, given the makefile

   a:
       echo "A"
   b:
       echo "B"
       $(MAKE) a
       echo "C"

   on the target "b" it should output

       echo "B"
       echo "A"
       echo "C"
_______________________________________________
Help-make mailing list
Help-make@gnu.org
https://lists.gnu.org/mailman/listinfo/help-make

Reply via email to