home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 8.ddi / HEAP.ZIP / MEMTEST.MAK < prev    next >
Encoding:
Text File  |  1992-06-10  |  452 b   |  15 lines

  1. # Make file for the HEAP Object Oriented Programing Example
  2. # Copyright (c) 1991 By Borland International, Inc.
  3. memtest.exe : mem.obj memtest.obj display.obj
  4.    tlink /v memtest+mem+display
  5.  
  6. mem.obj : mem.asm vmtutil.inc mem.inc
  7.    tasm /c /la /zi /m /DMDL=small mem.asm
  8.  
  9. memtest.obj : memtest.asm vmtutil.inc mem.inc
  10.    tasm /c /la /zi /m /DMDL=small memtest.asm
  11.  
  12. display.obj : display.asm
  13.    tasm /c /la /zi /m /DMDL=small display.asm
  14.  
  15.