home *** CD-ROM | disk | FTP | other *** search
- #
- # --- Version 2.0 89-12-23 23:47 ---
- #
- # CTask support routines Make-File for Microsoft 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.
- #
- reqopt=/c /Gs /Zp1 /Zl
- optopt=/Oailt /W3
- model=/AL
-
- .c.obj:
- cl $(reqopt) $(optopt) $(model) $*.c
- lib ctsupms.lib -+$*.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
-
-
-