PROJECT = CLIENT OBJ_CORE = CLIENT.obj RESOURCES = CLIENT.RES LIBPATH = F:\masm611\Lib ALL: $(PROJECT).exe # Definition of assembler and linker options **************************** !IFDEF debug AssemblerOptions = /c /Cp /coff /Zi /Fo LinkerOptions = /DEBUGTYPE:CV /DEBUG /PDB:NONE !ELSE AssemblerOptions = /c /Cp /coff /Fo LinkerOptions = !ENDIF # Inference rule for updating object files ****************************** .asm.obj: ML $(AssemblerOptions)$*.obj $< # Build rule for executable ********************************************* $(PROJECT).exe: $(OBJ_CORE) LINK $(LinkerOptions) @<