2016-01-15 117 views
-1
all: 
    @for dir in $(DIRS); do make -C $$dir; done 

我无法理解符号@。为什么使用@如何在makefile中使用shell脚本

+5

可能重复:http://stackoverflow.com/questions/8610799/what-does-at-symbol-colon-mean-in-a-makefile – joaumg

+1

在make手册中搜索'@'也是一个好的开始。 –

+1

[Makefiles中的@set -e命令中的'@'的含义可能重复(http://stackoverflow.com/questions/27400830/meaning-of-in-set-e-command-in-makefiles) – Virgile

回答