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
.cpp.obj: $(CC) $(CFLAGS) $*.cpp
is a default rule that will automatically resolve .obj dependencies from .cpp files...