Linux -@在shell脚本之前,它是什么意思

Linux -@在shell脚本之前,它是什么意思,linux,shell,makefile,busybox,Linux,Shell,Makefile,Busybox,请参见busyboxmakefile中的以下代码 scripts/config/conf: scripts/config/Makefile $(MAKE) -C scripts/config conf -@if [ ! -f .config ] ; then \ cp $(CONFIG_DEFCONFIG) .config; \ fi 我的问题是,-@在if子句之前是什么?这真令人沮丧 提前谢谢 再次读取GNU上的 声音回响 错误时禁用停止 这是一个

请参见
busybox
makefile中的以下代码

scripts/config/conf: scripts/config/Makefile
     $(MAKE) -C scripts/config conf
     -@if [ ! -f .config ] ; then \
       cp $(CONFIG_DEFCONFIG) .config; \
     fi
我的问题是,-@在if子句之前是什么?这真令人沮丧

提前谢谢

再次读取GNU上的

声音回响

错误时禁用停止


这是一个
make
惯例(不是shell惯例)。

我是makefile的新手,非常感谢