📄 makefile
字号:
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 + -