Using nmake, is it possible to have the makefile build all the .cpp files in the current directory automatically, without having to specify them individually?
So, instea
One possibility is to wrap the make in a script.
Either use a for loop, calling make on each .cpp file or construct a list of cpp files and use it as a parameter to the makefile.