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

  1. #
  2. #  --- Version 2.0 89-12-23 23:46 ---
  3. #  CTask support routines Make-File for Borland's 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 (all except Tiny and Huge).
  8. #
  9. reqopt=-c -K -N- -a- -u
  10. optopt=-d -G -O -k- -w
  11. model=-ml
  12.  
  13. .c.obj:
  14.    tcc $(reqopt) $(optopt) $(model) $*.c
  15.    lib ctsuptc.lib -+$*.obj;
  16.  
  17. ctsuptc.lib:   tskalloc.obj tsksnap.obj conout.obj
  18.  
  19.  
  20. tskalloc.obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  21.  
  22. tsksnap.obj:   tsksnap.c  tsk.h tsklocal.h tskconf.h
  23.  
  24. conout.obj:    conout.c   tsk.h tskconf.h
  25.  
  26.