#To run this Make file... # NMAKE /A BUGX.MAK # what I'm doing here is assembling a file eve.asm, with # a resource file eve.rc, generating executable eve.exe. # the masm switches "/c /coff" generate COFF debugging info. # the link switches "/DEBUG /DEBUGTYPE:COFF" generate # debugging info in COFF format, inside the EXE file. fn = eve masmsw = /c /coff all:$(fn).EXE $(fn).OBJ : $(fn).ASM ..\bin\ML $(masmsw) $(fn).ASM $(fn).RES : $(fn).RC ..\bin\RC $(fn).RC $(fn).EXE : $(fn).OBJ $(fn).RES ..\bin\LINK @<