Multiple Targets

NMAKE evaluates multiple targets in a single dependency as if each were specified in a separate description block as follows:

This... ...is evaluated as this

bounce.exe leap.exe :
jump.obj
   echo Building...

bounce.exe : jump.obj
   echo Building...
leap.exe : jump.obj
   echo Building...