makefile
来自「内存管理工具Exmap。该工具比 ps 或 top 更精确」· 代码 · 共 23 行
TXT
23 行
# 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 + =
减小字号Ctrl + -
显示快捷键?