home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 330_02 / testmod.tc < prev    next >
Text File  |  1990-10-12  |  461b  |  21 lines

  1. #
  2. #  --- Version 2.2 90-10-12 16:25 ---
  3. #  CTask sample applications Make-File for Borland's make.
  4. #  Application: TESTMOD.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 $*
  15.  
  16. testmod.exe:   testmod.obj $(ctlib).lib ctsuptc$(model).lib
  17.    tlink /M testmod,,,$(ctlib) ctsuptc$(model)
  18.  
  19. testmod.obj:   testmod.asm tsk.mac
  20.