build_help.mk

来自「国内著名嵌入式培训机构内部资料,内含一些实例代码,包括技术专题书籍」· MK 代码 · 共 46 行

MK
46
字号
# ============================================================================
#  Name	 : build_help.mk
#  Part of  : Exam0303NewGui
# ============================================================================
#  Name	 : build_help.mk
#  Part of  : Exam0303NewGui
#
#  Description: This make file will build the application help file (.hlp)
# 
# ============================================================================

do_nothing :
	@rem do_nothing

# build the help from the MAKMAKE step so the header file generated
# will be found by cpp.exe when calculating the dependency information
# in the mmp makefiles.

MAKMAKE : Exam0303NewGui_0xE2F675DA.hlp
Exam0303NewGui_0xE2F675DA.hlp : Exam0303NewGui.xml Exam0303NewGui.cshlp Custom.xml
	cshlpcmp Exam0303NewGui.cshlp
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
	copy Exam0303NewGui_0xE2F675DA.hlp $(EPOCROOT)epoc32\$(PLATFORM)\c\resource\help
endif

BLD : do_nothing

CLEAN :
	del Exam0303NewGui_0xE2F675DA.hlp
	del Exam0303NewGui_0xE2F675DA.hlp.hrh

LIB : do_nothing

CLEANLIB : do_nothing

RESOURCE : do_nothing
		
FREEZE : do_nothing

SAVESPACE : do_nothing

RELEASABLES :
	@echo Exam0303NewGui_0xE2F675DA.hlp

FINAL : do_nothing

⌨️ 快捷键说明

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