2016-01-15 112 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

回答