?? makefile
字號:
# You can do "make SUB=blah" to make only a few, or edit here, or both# You can also run make directly in the subdirs you want.SUB = ftp%.build: (cd $(patsubst %.build, %, $@) && $(MAKE))%.install: (cd $(patsubst %.install, %, $@) && $(MAKE) install)%.clean: (cd $(patsubst %.clean, %, $@) && $(MAKE) clean)all: $(patsubst %, %.build, $(SUB))install: $(patsubst %, %.install, $(SUB))clean: $(patsubst %, %.clean, $(SUB))distclean: clean rm -f MCONFIG
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -