?? makefile
字號:
# There's probably a better way of doing this (apart from automake),# would anyone care to enlighten me?# Note this is the build order, and reflects inter-subdir# dependencies.SUBDIRS=kernel jutil src tools.PHONY: build clean test $(SUBDIRS)DOSUBDIRS=for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir $@; \ donebuild: $(SUBDIRS) $(DOSUBDIRS)clean: $(SUBDIRS) $(DOSUBDIRS)test: build make -C src test
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -