orcell.mke

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

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

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

orcellObjs = $(o)orcell.mo
orcellRscs = $(o)orcell.rsc  $(o)orcell.mp

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

#---------------------------------------------
#       Generate Command Tables
#---------------------------------------------  
$(privateInc)orcell.h      :   $(baseDir)orcell.r
  
#---------------------------------------------
#       Compile Resources
#---------------------------------------------
$(o)orcell.rsc             :   $(baseDir)orcell.r

#---------------------------------------------
#       Compile and link MDL Application
#---------------------------------------------
$(o)orcell.mo              :   $(baseDir)orcell.mc
  
$(o)orcell.mp              :   $(orcellObjs)
             $(msg)
             >$(o)temp.cmd
             -a$@
             $(linkOpts)
             $(orcellObjs)
             <
             $(MLinkCmd) @$(o)temp.cmd
             ~time

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

⌨️ 快捷键说明

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