Change older makefile system to take advantage of parallel compiles
问题 We use Microsoft NMAKE to compile a large number of native C++ and some Intel Fortran files. Typically the makefiles contains lines such as this (for each file): $(LINKPATH)\olemisc.obj : ole2\olemisc.cpp $(OLEMISC_DEP) $(CCDEBUG) ole2\olemisc.cpp $(GDEPS) ole2\olemisc.cpp OLEMISC_DEP =\ e:\ole2\ifaceole.hpp\ e:\ole2\cpptypes.hpp\ etc. It works fine, but compiles one file at a time. We would like to take advantage of multi core processors and compile more than one file at a time. I would