?? makefile
字號:
###### Define directories to build ######
SUBDIRS = a2d \
ads7828 \
ads7870 \
basic_io \
cmdline \
ds1631 \
encoder \
extint \
glcd \
gps \
i2c \
lcd \
mmc \
netstack \
pulse \
rprintf \
servo \
spyglass \
stxetx \
timer \
#SUBDIRS = $(dir ./*)
###### Define build rules ######
.PHONY: examples $(SUBDIRS)
examples: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY : all
all : examples.PHONY : cleanclean : examples
rm -vf $(addsuffix /AVRProject.ncb, $(SUBDIRS))
rm -vf $(addsuffix /AVRProject.opt, $(SUBDIRS))
rm -vf $(addsuffix /AVRProject.plg, $(SUBDIRS))
rm -vf ../*.lst
rm -vf ../ccrma/*.lst
rm -vf ../megaio/*.lst
rm -vf ../net/*.lst
rm -vf ../rsl/*.lst
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -