home *** CD-ROM | disk | FTP | other *** search
- #
- # --- Version 2.0 89-12-24 00:05 ---
- #
- # CTask sample applications Make-File for Microsoft make.
- # Application: TSIO.C
- #
- # "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 /Zp1 /Gs
- optopt=/Oailt /W3
- model=/AL
-
- .c.obj:
- cl $(reqopt) $(optopt) $(model) $*.c
-
- .obj.exe:
- link $*,,,ctaskms+ctsupms/M/ST:16000;
-
- tsio.obj: tsio.c tsk.h sio.h tskconf.h
-
- tsio.exe: tsio.obj ctaskms.lib ctsupms.lib
-
-
-