📄 makefile.subdirs
字号:
export VERBOSE.PHONY: clean, allifeq ($(VERBOSE), 0)QUIET=--no-print-directory -sendifall: @for subdir in $(CSUBDIRS); do $(MESSAGE) "Entering contrib/$$subdir."; if ! $(MAKE) $(QUIET) -C contrib/$$subdir -f Makefile.custom; then $(MESSAGE) "Compilation in $$subdir failed."; exit 1; fi; done @for subdir in $(SUBDIRS); do $(MESSAGE) "Entering $$subdir."; if ! $(MAKE) $(QUIET) -C $$subdir; then $(MESSAGE) "Compilation in $$subdir failed."; exit 1; fi; doneclean: @for subdir in $(SUBDIRS); do $(MESSAGE) "Entering $$subdir."; $(MAKE) $(QUIET) -C $$subdir clean; doneclean-all: clean @for subdir in $(CSUBDIRS); do $(MESSAGE) "Entering contrib/$$subdir."; $(MAKE) $(QUIET) -C contrib/$$subdir -f Makefile.custom clean; donedep: @for subdir in $(SUBDIRS); do $(MESSAGE) "Entering $$subdir."; $(MAKE) $(QUIET) -C $$subdir dep; done @for subdir in $(CSUBDIRS); do $(MESSAGE) "Entering contrib/$$subdir."; $(MAKE) $(QUIET) -C contrib/$$subdir -f Makefile.custom dep; donecopy: clean tar -C .. -X .cvsignore -cvzf `date +../$(shell basename $(SYSTAE_ROOT))-%d%b%y.tgz` $(shell basename $(SYSTAE_ROOT))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -