makefile.subdirs

来自「Particle filtering implementation and ap」· SUBDIRS 代码 · 共 25 行

SUBDIRS
25
字号
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 + =
减小字号Ctrl + -
显示快捷键?