.wrmakefile

来自「vxworks串口调试程序事例适用于初学者」· WRMAKEFILE 代码 · 共 49 行

WRMAKEFILE
49
字号
# The file ".wrmakefile" is the template used by the Wind River Workbench to# generate the makefiles of this project. Add user-specific build targets and# make rules only(!) in this project's ".wrmakefile" file. These will then be# automatically dumped into the makefiles.WIND_HOME := $(subst \,/,$(WIND_HOME))WIND_BASE := $(subst \,/,$(WIND_BASE))WIND_USR := $(subst \,/,$(WIND_USR))all : pre_build main_all post_build_clean ::	@echo "make: removing targets and objects of `pwd`"%IDE_GENERATED%-include $(PRJ_ROOT_DIR)/*.makefile-include *.makefilemain_all : external_build $(PROJECT_TARGETS)	@echo "make: built targets of `pwd`"# entry point for extending the buildexternal_build ::	@echo ""# main entry point for pre processing prior to the buildpre_build :: $(PRE_BUILD_STEP) generate_sources	@echo ""# entry point for generating sources prior to the buildgenerate_sources ::	@echo ""# main entry point for post processing after the buildpost_build :: $(POST_BUILD_STEP) deploy_output	@echo ""# entry point for deploying output after the builddeploy_output ::	@echo ""clean :: external_clean $(CLEAN_STEP) _clean# entry point for extending the build cleanexternal_clean ::	@echo ""

⌨️ 快捷键说明

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