home *** CD-ROM | disk | FTP | other *** search
- #
- # --- Version 2.0 89-12-24 00:03 ---
- #
- # CTask sample applications Make-File for Microsoft make.
- # Application: RES.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;
-
- res.obj: res.c tsk.h tskconf.h
-
- res.exe: res.obj ctaskms.lib ctsupms.lib
-
-
-
-