h248.makefile

来自「h248源码编译时所用的makefile,」· MAKEFILE 代码 · 共 57 行

MAKEFILE
57
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?