📄 h248.makefile
字号:
## Makefile for H248 application## Determine build flavor (debug, gn, rom)# Append colon (:) at end to avoid cases like "foo_d_goo"TEMP_BLD_FLAVOR := $(BLD_FLAVOR):# Search for "_d:"ifneq ($(findstring _d:,$(TEMP_BLD_FLAVOR)),) USEDEBUGLIBS := yesendif# Define the build environment tools. Alter these lines if you want# to reference an alternate set of build tools. You should only need# to do this in very special cases.include $(BLD_TOOLSBLD)/mk/Tools.mk# Determine application makefileifneq ($(findstring ipp, $(BLD_FLAVOR)),) APP_MAKEFILE := ipp.mkendififneq ($(findstring mh, $(BLD_FLAVOR)),) APP_MAKEFILE := mh.mkendififneq ($(findstring ref, $(BLD_FLAVOR)),) APP_MAKEFILE := ref.mkendif# Run application makefileinclude $(APP_MAKEFILE)# Include the main Makefile that has the commands to build the library.# By using a central Makefile global additions/changes can be made# easily.## The valid make targets are# all (default) - builds the depend files and application.# clean - removes all backup files, .o, .s, and executable files for the# current target OS and build flavor.# cleanall - does a 'make clean' and in addition removes any# .mk dependency files.# cleaneverything - removes all backup files and the 'bin' directory.# In addition, does a 'make cleaneverything' in every local# library.# exports - builds the depend files and application then copies the# executable file, and documentation file# to the source build area. Then does 'make exports' in# every local library.include $(BLD_MAKEAPP)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -