如何在makefile里面添加打印?

使用info/warning/error增加调试信息
方法1: $(info, "here add the debug info")
但是此不能打印出.mk的行号

方法2: $(warning, "here add the debug info")

方法3: $(error "error: this will stop the compile")
这个可以停止当前makefile的编译

方法4: 打印变量的值
$(info, $(TARGET_DEVICE) )

你可能感兴趣的:(#,多线程,网络编程,#,C语言编程)