Taking an nmake project, specifically Ruby, and trying to see exactly what commands are used to build it. nmake says what files it is compiling, but not what commandline it is using to compile each file. The closest thing to an obviously relevant option is /D, but that doesn't shed much light on it.
Is there a way, by supplying some option to nmake or otherwise, to see exactly what commands it is issuing?
I use
/N
to display the command lines and/A
to run all targets (not just out-of-date targets).Docs: https://msdn.microsoft.com/en-us/library/afyyse50.aspx