makefile 中 @echo 与 echo的区别

makefile 内容如下:

help:
	echo  "libs:      build all libs"
	@echo  "libs_clean clean all libs"

输入:make clean

echo  "libs:      build all libs"
libs:      build all libs
libs_clean clean all libs

  

猜你喜欢

转载自blog.csdn.net/weixin_40755306/article/details/88872998