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

  1. #
  2. #  --- Version 2.0 89-12-23 23:48 ---
  3. #  CTask support routines Make-File for Borland's make.
  4. #  Huge Model version.
  5. #
  6. #    "reqopt" contains required options, and shouldn't normally be changed.
  7. #    "optopt" lists optional optimization options, and may be changed.
  8. #
  9. reqopt=-c -K -N- -mh -a- -u
  10. optopt=-d -G -O -k- -w
  11.  
  12. .c.obj:
  13.    tcc $(reqopt) $(optopt) $*.c
  14.    lib ctsuptch.lib -+$*.obj;
  15.  
  16. ctsuptch.lib:  tskalloc.obj tsksnap.obj conout.obj
  17.  
  18.  
  19. tskalloc.obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  20.  
  21. tsksnap.obj:   tsksnap.c  tsk.h tsklocal.h tskconf.h
  22.  
  23. conout.obj:    conout.c   tsk.h tskconf.h
  24.  
  25.