home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / DOOG / CTASK.ZIP / CTSUP.MS < prev    next >
Text File  |  1989-12-23  |  598b  |  25 lines

  1. #
  2. #  --- Version 2.0 89-12-23 23:47 ---
  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 to use.
  8. #
  9. reqopt=/c /Gs /Zp1 /Zl
  10. optopt=/Oailt /W3
  11. model=/AL
  12.  
  13. .c.obj:
  14.    cl $(reqopt) $(optopt) $(model) $*.c
  15.    lib ctsupms.lib -+$*.obj;
  16.  
  17. tskalloc.obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  18.  
  19. tsksnap.obj:   tsksnap.c  tsk.h tsklocal.h tskconf.h
  20.  
  21. conout.obj:    conout.c   tsk.h tskconf.h
  22.  
  23.  
  24.