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

  1. #
  2. #  --- Version 2.2 90-10-12 16:41 ---
  3. #  CTask sample applications Make-File for Microsoft make.
  4. #  Application: TPRT.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=/Ox /W3
  12. model=L
  13.  
  14. .c.obj:
  15.    cl $(reqopt) $(optopt) /A$(model) $*.c
  16.  
  17. .obj.exe:
  18.    link $*,,,ctaskms ctsupms$(model) /M/ST:16000;
  19.  
  20. tprt.obj:     tprt.c tsk.h sio.h tskconf.h
  21.  
  22. tprt.exe:     tprt.obj ctaskms.lib ctsupms$(model).lib
  23.  
  24.  
  25.