home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CTASK22.ZIP / MINRES.TC < prev    next >
Text File  |  1990-10-12  |  462b  |  22 lines

  1. #
  2. #  --- Version 2.2 90-10-12 16:24 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: MINRES.ASM
  5. #
  6. #    "model"  is the memory model letter to use (all except Tiny & Huge).
  7. #
  8. !if !$d(model)
  9. model=l
  10. !endif
  11. ctlib=ctasktc
  12.  
  13. .asm.obj:
  14.    tasm /JMASM51 /w /w-pdc /mx $*.asm
  15.  
  16. minres.exe:  minres.obj $(ctlib).lib ctsuptc$(model).lib
  17.    tlink /m minres,,,$(ctlib) ctsuptc$(model)
  18.  
  19. minres.obj:     minres.asm tsk.mac
  20.  
  21.