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.tc < prev    next >
Text File  |  1990-10-12  |  1KB  |  31 lines

  1. #
  2. #  --- Version 2.2 90-10-12 16:19 ---
  3. #  CTask support routines Make-File for Borland's make.
  4. #  All memory models except Tiny and Huge.
  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 letter to use (all except Tiny and Huge).
  9. #
  10. reqopt=-c -K -N- -a- -u
  11. optopt=-d -G -O -k- -v- -y- -w
  12. !if !$d(model)
  13. model=l
  14. !endif
  15.  
  16. ctsuptc$(model).lib:   tskallo$(model).obj tsksnap$(model).obj conout$(model).obj
  17.  
  18. tskallo$(model).obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  19.    tcc $(reqopt) $(optopt) -m$(model) -o$* tskalloc.c
  20.    lib ctsuptc$(model).lib -+$*.obj;
  21.  
  22. tsksnap$(model).obj:  tsksnap.c tsk.h tsklocal.h tskconf.h tskdeb.h
  23.    tcc $(reqopt) $(optopt) -m$(model) -o$* tsksnap.c
  24.    lib ctsuptc$(model).lib -+$*.obj;
  25.  
  26. conout$(model).obj:   conout.c   tsk.h tskconf.h
  27.    tcc $(reqopt) $(optopt) -m$(model) -o$* conout.c
  28.    lib ctsuptc$(model).lib -+$*.obj;
  29.  
  30.