I have a legacy MS NMAKE Makefile I need to fix a few bugs in.
There are some very long command lines I wish to debug that are being executed using the following NMAKE trick
dep:
cmd @<<tmpfilename
cmd_args..
<<
When changing the line to
dep:
echo cmd @<<tmpfilename
cmd_args..
<<
NMAKE complains that the line is too long.
Is there any other trick I can apply in order to view the command line NMAKE is actually executing?