home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / asm / iomon2 / iomon.mak < prev    next >
Text File  |  1991-06-11  |  294b  |  19 lines

  1. #make file for the I/O Monitor           
  2. OBJ1=ioisr.obj ioinit.obj
  3. AINC=ioequ.inc iostruc.inc iodat.inc iomac.inc              
  4.  
  5. .asm.obj:
  6.     masm $*; 
  7.  
  8. # ASM Sources
  9.  
  10. ioisr.obj: $*.asm $(AINC)
  11.  
  12. ioinit.obj: $*.asm $(AINC)
  13.  
  14.  
  15. # Executable
  16.  
  17. iom.exe: $(OBJ1) 
  18.    link @iom.lnk
  19.