ctsup.ms
来自「一个嵌入式实时操作系统源码」· MS 代码 · 共 26 行
MS
26 行
#
# --- Version 2.2 90-10-12 16:29 ---
#
# 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 letter to use (L, S, ...)
#
reqopt=/c /Gs /Zp1 /Zl
optopt=/Ox /W3
model=L
tskallo$(model).obj: tskalloc.c tsk.h tsklocal.h tskconf.h
cl $(reqopt) $(optopt) /A$(model) /Fo$* tskalloc.c
lib ctsupms$(model).lib -+$*.obj;
tsksnap$(model).obj: tsksnap.c tsk.h tsklocal.h tskconf.h tskdeb.h
cl $(reqopt) $(optopt) /A$(model) /Fo$* tsksnap.c
lib ctsupms$(model).lib -+$*.obj;
conout$(model).obj: conout.c tsk.h tskconf.h
cl $(reqopt) $(optopt) /A$(model) /Fo$* conout.c
lib ctsupms$(model).lib -+$*.obj;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?