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

  1. #
  2. #  --- Version 2.0 89-12-24 00:03 ---
  3. #  CTask sample applications Make-File for Microsoft make.
  4. #  Application: RES.C
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #    "model"  is the memory model to use.
  9. #
  10. reqopt=/c /Zp1 /Gs
  11. optopt=/Oailt /W3
  12. model=/AL
  13.  
  14. .c.obj:
  15.    cl $(reqopt) $(optopt) $(model) $*.c
  16.  
  17. .obj.exe:
  18.    link $*,,,ctaskms+ctsupms/M/ST:16000;
  19.  
  20. res.obj:     res.c tsk.h tskconf.h
  21.  
  22. res.exe:     res.obj ctaskms.lib ctsupms.lib
  23.  
  24.  
  25.  
  26.