⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 COLDFIRE 5282SC的文件
💻
字号:
###############################################################
#
# Master Makefile for all MCF5282 Software Projects
#
# To use, change to this directory, and enter the command:
#
#    make <project>
#
# where <project> is one of the ones listed in this makefile.
#
###############################################################

RM      = rm -fr

###############################################################

help:
	@echo
	@echo "Please supply one of the following options to 'make':"
	@echo
	@echo "  simple            Basic project provided as a template"
	@echo "  all               Build all of the above"
	@echo
	@echo "  [project]-clean   Clean specific project"
	@echo "                    i.e. 'simple-clean'"
	@echo "  all-clean         Clean all projects"
	@echo

########################################################################

simple:
	@ $(MAKE) -f build/diab/simple.make all \
	OBJDIR=obj/diab

simple-clean :
	$(RM) obj/diab/simple

########################################################################

init-clean :
	$(RM) obj/diab/init
	
########################################################################

all:			\
	simple
	
all-clean:
	$(RM) obj/diab
	
########################################################################

⌨️ 快捷键说明

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