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.ms < prev    next >
Text File  |  1990-10-12  |  382b  |  19 lines

  1. #
  2. #  --- Version 2.2 90-10-12 16:40 ---
  3. #  CTask sample applications Make-File for Microsoft make.
  4. #  Application: TESTMOD.ASM
  5. #
  6. #    "model"  is the memory model to use.
  7. #
  8. model=L
  9.  
  10. .asm.obj:
  11.    masm /W2 /MX $*;
  12.  
  13. testmod.obj:   testmod.asm tsk.mac
  14.  
  15. testmod.exe:   testmod.obj ctaskms.lib ctsupms$(model).lib
  16.    link /M /NODEF testmod,,,ctaskms ctsupms$(model)
  17.  
  18.