Nmakefile: Parallel!

modern-harvey2
Doug Coleman 2017-09-15 19:07:29 -05:00
parent ea429d347d
commit 233d29d8de
1 changed files with 5 additions and 4 deletions

View File

@ -92,11 +92,12 @@ DLL_OBJS = $(PLAF_DLL_OBJS) \
vm\vm.obj \
vm\words.obj
.cpp.obj:
cl /EHsc $(CL_FLAGS) /Fo$@ /c $<
# batch mode has ::
.cpp.obj::
cl /EHsc $(CL_FLAGS) /MP32 /Fovm/ /c $<
.c.obj:
cl $(CL_FLAGS) /Fo$@ /c $<
.c.obj::
cl /EHsc $(CL_FLAGS) /MP32 /Fovm/ /c $<
.asm.obj:
ml $(ML_FLAGS) /Fo$@ /c $<