plcirc.mke

来自「microstation MDL入门指导手册!」· MKE 代码 · 共 56 行

MKE
56
字号
#------------------------------------------------------------------
#       PLCIRC MDL Make File
#------------------------------------------------------------------
%include  mdl.mki

#------------------------------------------------------------------
#       Define constants specific to this plcirc application
#------------------------------------------------------------------
baseDir      =   ./
privateInc   = $(baseDir)

plcircObjs = $(o)plcirc.mo
plcircRscs = $(o)plcirc.rsc  $(o)plcirc.mp

#----------------------------------------------------------------------
# Create needed output directories if they don't exist
#----------------------------------------------------------------------
$(o)$(tstdir)			: $(o)$(tstdir)

#---------------------------------------------
#       Generate Command Tables
#---------------------------------------------
$(privateInc)plcirc.h      :   $(baseDir)plcirc.r

#---------------------------------------------
#       Compile Resources
#---------------------------------------------
$(o)plcirc.rsc             :   $(baseDir)plcirc.r

#---------------------------------------------
#       Compile and link MDL Application
#---------------------------------------------
$(o)plcirc.mo              :   $(baseDir)plcirc.mc

$(o)plcirc.mp              :   $(plcircObjs)
             $(msg)
             >$(o)temp.cmd
             -a$@
             $(linkOpts)
             $(plcircObjs)
             <
             $(MLinkCmd) @$(o)temp.cmd
             ~time

#---------------------------------------------
#       Merge Objects into one file
#---------------------------------------------
$(mdlapps)plcirc.ma       : $(plcircRscs)
             $(msg)
             >$(o)temp.cmd
             -o$@
             $(plcircRscs)
             <
             $(RLibCmd) @$(o)temp.cmd
             ~time

⌨️ 快捷键说明

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