home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / ct22d / ctsup.bc < prev    next >
Encoding:
Text File  |  1993-06-08  |  1.0 KB  |  32 lines

  1. #
  2. #  --- Version 2.2 93-06-08 10:08 ---
  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=+BC.CFG -zCCTASK_TEXT -ml -a-
  11. #optopt=-v -vi
  12. asmopt=/Mx /W /JM510 /JQUIRKS
  13. !if !$d(model)
  14. model=l
  15. !endif
  16.  
  17. ctsuptc$(model).lib:   tskallo$(model).obj tsksnap$(model).obj conout$(model).obj
  18.  
  19. tskallo$(model).obj:  tskalloc.c tsk.h tsklocal.h tskconf.h
  20.    bcc $(reqopt) $(optopt) -m$(model) -o$* tskalloc.c
  21.    lib ctsuptc$(model).lib -+$*.obj;
  22.  
  23. tsksnap$(model).obj:  tsksnap.c tsk.h tsklocal.h tskconf.h tskdeb.h
  24.    bcc $(reqopt) $(optopt) -m$(model) -o$* tsksnap.c
  25.    lib ctsuptc$(model).lib -+$*.obj;
  26.  
  27. conout$(model).obj:   conout.c   tsk.h tskconf.h
  28.    bcc $(reqopt) $(optopt) -m$(model) -o$* conout.c
  29.    lib ctsuptc$(model).lib -+$*.obj;
  30.  
  31.