home *** CD-ROM | disk | FTP | other *** search
- #
- # --- Version 2.0 89-12-23 23:46 ---
- #
- # CTask support routines Make-File for Borland's make.
- #
- # "reqopt" contains required options, and shouldn't normally be changed.
- # "optopt" lists optional optimization options, and may be changed.
- # "model" is the memory model to use (all except Tiny and Huge).
- #
- reqopt=-c -K -N- -a- -u
- optopt=-d -G -O -k- -w
- model=-ml
-
- .c.obj:
- tcc $(reqopt) $(optopt) $(model) $*.c
- lib ctsuptc.lib -+$*.obj;
-
- ctsuptc.lib: tskalloc.obj tsksnap.obj conout.obj
-
-
- tskalloc.obj: tskalloc.c tsk.h tsklocal.h tskconf.h
-
- tsksnap.obj: tsksnap.c tsk.h tsklocal.h tskconf.h
-
- conout.obj: conout.c tsk.h tskconf.h
-
-