2014-01-22 82 views
1

我知道@command語法用於抑制命令的輸出。但如何抑制另一個Makefile的調用?調用Make時輸出Makefile輸出

@$(MAKE) -C ./other/ 

上方的例子仍然打印

make[1]: Entering directory '/home/user/proj/other/' 

如何抑制呢?通過make 2>&1 /dev/null(或類似的)調用「main」Makefile對我來說不是我的選擇!

+2

我相信'--no-print-directory'參數是你在這裏找的。 –

+0

就是這樣!非常感謝! – musicmatze

回答

1

--no-print-directory參數是你在這裏找的。