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

📄 makefile

📁 philips公司ISP1362 USB OTG控制芯片的驱动
💻
字号:

TOPDIR := .
include $(TOPDIR)/Rules.make


ifdef OTGFLAG
SUBDIRS =  hal host device otg appl
else
ifdef HOSTONLY
SUBDIRS = hal host
else
SUBDIRS = hal device
endif
endif

all: subdirs

subdirs:
	for n in $(SUBDIRS); do $(MAKE) -C $$n || exit 1; done

clean:
	rm -f $(TOPDIR)/objs/*.o
	rm -f $(TOPDIR)/objs/msdisk
	rm -f $(TOPDIR)/objs/otgmsapp
	rm -f *.o *~
	for n in $(SUBDIRS); do $(MAKE) -C $$n clean; done

checkthem:
	for n in $(SUBDIRS); do $(MAKE) -C $$n checkthem; done

check:
	for n in $(SUBDIRS); do $(MAKE) -C $$n check; done

objs:
	for n in $(SUBDIRS); do $(MAKE) -C $$n objs; done

install:
	for n in $(SUBDIRS); do $(MAKE) -C $$n install; done

⌨️ 快捷键说明

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