home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 330_02 / 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.