Nmakefile: Let cl decide how many threads to use.

paths
Doug Coleman 2017-09-15 19:40:26 -05:00
parent a1995c491c
commit 5e67ded4a9
1 changed files with 2 additions and 2 deletions

View File

@ -116,10 +116,10 @@ DLL_OBJS = $(PLAF_DLL_OBJS) \
# batch mode has :: # batch mode has ::
.cpp.obj:: .cpp.obj::
cl /EHsc $(CL_FLAGS) /MP32 /Fovm/ /c $< cl /EHsc $(CL_FLAGS) /MP /Fovm/ /c $<
.c.obj:: .c.obj::
cl /EHsc $(CL_FLAGS) /MP32 /Fovm/ /c $< cl /EHsc $(CL_FLAGS) /MP /Fovm/ /c $<
.asm.obj: .asm.obj:
ml $(ML_FLAGS) /Fo$@ /c $< ml $(ML_FLAGS) /Fo$@ /c $<