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