home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR41 / CTASK22D.ZIP / MINRES.BC < prev    next >
Text File  |  1992-12-21  |  460b  |  22 lines

  1. #
  2. #  --- Version 2.2 92-09-02 09:34 ---
  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 /JM510 /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.