📄 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 + -