home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 330_02 / spawn.ms < prev    next >
Text File  |  1990-10-12  |  599b  |  26 lines

  1. #
  2. #  --- Version 2.2 90-10-12 16:40 ---
  3. #  CTask sample applications Make-File for Microsoft make.
  4. #  Application: SPAWN.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. spawn.obj:     spawn.c tsk.h tskconf.h
  21.  
  22. spawn.exe:     spawn.obj  ctaskms.lib ctsupms$(model).lib
  23.  
  24.  
  25.