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

  1. #
  2. #  --- Version 2.2 90-10-12 16:29 ---
  3. #  CTask support routines Make-File for Microsoft make.
  4. #
  5. #    "reqopt" contains required options, and shouldn't normally be changed.
  6. #    "optopt" lists optional optimization options, and may be changed.
  7. #    "model"  is the memory model letter to use (L, S, ...)
  8. #
  9. reqopt=/c /Gs /Zp1 /Zl
  10. optopt=/Ox /W3
  11. model=L
  12.  
  13. tskallo$(model).obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  14.    cl $(reqopt) $(optopt) /A$(model) /Fo$* tskalloc.c
  15.    lib ctsupms$(model).lib -+$*.obj;
  16.  
  17. tsksnap$(model).obj:  tsksnap.c tsk.h tsklocal.h tskconf.h tskdeb.h
  18.    cl $(reqopt) $(optopt) /A$(model) /Fo$* tsksnap.c
  19.    lib ctsupms$(model).lib -+$*.obj;
  20.  
  21. conout$(model).obj:   conout.c   tsk.h tskconf.h
  22.    cl $(reqopt) $(optopt) /A$(model) /Fo$* conout.c
  23.    lib ctsupms$(model).lib -+$*.obj;
  24.  
  25.