?? 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: $(MAKE) -C $(patsubst %.build, %, $@)%.install: $(MAKE) -C $(patsubst %.install, %, $@) install%.clean: $(MAKE) -C $(patsubst %.clean, %, $@) cleanall: $(patsubst %, %.build, $(SUB))install: $(patsubst %, %.install, $(SUB))clean: $(patsubst %, %.clean, $(SUB))
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -