mdlapp.mki

来自「Bentley Microstation的二次开发工具MDL的学习源代码」· MKI 代码 · 共 64 行

MKI
64
字号
#----------------------------------------------------------------------
#
#   MDL Example Applications Make Include File
#
#   $Workfile:   mdlapp.mki  $
#   $Revision:   1.0  $
#   $Date:   15 Nov 1996  $
#
#----------------------------------------------------------------------
msg	=	|[** MDL Application: $@ <-- $= **]

%if !defined (MSO)
    MSO	    =	$(MS)
%endif	#  !MSO

%if !defined (MSMDE)
    MSMDE	    = 	$(MS)
%endif

%if !defined (SCRDIGIT)
    SCRDIGIT    = 	d:\scrdigit\
%endif

#----------------------------------------------------------
#	Define directories
#----------------------------------------------------------
%if	!vax
    src		= $(SCRDIGIT)/mdlapps/
    mdlapps = $(SCRDIGIT)/mdlapps/
    appsOut	= $(SCRDIGIT)/mdlapps/

    o           = $(appsOut)objects/
%if !defined (BSI) || !defined (genSrc)
    genSrc      = $(appsOut)objects/
%endif
    rscObjects	= $(appsOut)rscobj/
    reqdObjs	= $(appsOut)intermed/

%else	# VAX definitions
    src		= SCRDIGIT:[mdlapps]
    mdlapps = SCRDIGIT:[mdlapps]
    appsOut	= SCRDIGIT:[mdlapps]

    o		= SCRDIGIT:[mdlapps.objects]
%if !defined (BSI) || !defined (genSrc)
    genSrc	= SCRDIGIT:[mdlapps.objects]
%endif
    rscObjects	= SCRDIGIT:[mdlapps.rscobj]
    reqdObjs	= SCRDIGIT:[mdlapps.intermed]
%endif

#----------------------------------------------------------
#	Create needed output directories if they dont exist
#----------------------------------------------------------
$(appsOut)$(tstdir):	$(appsOut)$(tstdir)

$(o)$(tstdir):			$(o)$(tstdir)

$(genSrc)$(tstdir):		$(genSrc)$(tstdir)

$(rscObjects)$(tstdir):		$(rscObjects)$(tstdir)

$(reqdObjs)$(tstdir):		$(reqdObjs)$(tstdir)

⌨️ 快捷键说明

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