res.bc

来自「一个可以立即使用的嵌入式操作系统」· BC 代码 · 共 28 行

BC
28
字号
#
#  --- Version 2.2 93-02-26 08:49 ---
# 
#  CTask sample applications Make-File for Borland's 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 letter to use (all except Tiny & Huge).
#    "lib"    is the Turbo C library path
#
reqopt=+BC.CFG 
optopt=-v -vi
!if !$d(model)
model=l
!endif
ctlib=ctasktc

.c.obj:
   bcc $(reqopt) $(optopt) -m$(model) $*.c

res.exe:     res.obj ctsuptc$(model).lib $(ctlib).lib
   tlink /m /l /v c0$(model) $*,$*,$*,ctsuptc$(model) $(ctlib) c$(model)

res.obj:     res.c tsk.h tskconf.h


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?