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

  1. #
  2. #  --- Version 2.2 90-10-12 16:19 ---
  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 -zCCTASK_TEXT -zDCTASK_DATA -zRCTASK_DATA -K -N- -mh -a- -u
  10. optopt=-d -G -O -k- -w -v-
  11.  
  12. ctsuptch.lib:  tskalloh.obj tsksnaph.obj conouth.obj
  13.  
  14. tskalloh.obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  15.    tcc $(reqopt) $(optopt) -o$* tskalloc.c
  16.    lib ctsuptch.lib -+$*.obj;
  17.  
  18. tsksnaph.obj:  tsksnap.c tsk.h tsklocal.h tskconf.h tskdeb.h
  19.    tcc $(reqopt) $(optopt) -o$* tsksnap.c
  20.    lib ctsuptch.lib -+$*.obj;
  21.  
  22. conouth.obj:    conout.c  tsk.h tskconf.h
  23.    tcc $(reqopt) $(optopt) -o$* conout.c
  24.    lib ctsuptch.lib -+$*.obj;
  25.  
  26.  
  27.