标签: linux shell makefile busybox
请参阅busybox makefile
busybox
scripts/config/conf: scripts/config/Makefile $(MAKE) -C scripts/config conf -@if [ ! -f .config ] ; then \ cp $(CONFIG_DEFCONFIG) .config; \ fi
我的问题是if子句之前的 - @ 是什么?这真是令人沮丧。
提前感谢!
答案 0 :(得分:2)
再次阅读make documentation
at sign @禁用回显。
@
minus sign -禁用错误停止。
-
这是make约定(不是shell约定)。
make