使用info/warning/error增加调试信息
$(info “here add the debug info”)
info信息不打印消息所在的行号
$(warning “here add the debug info”)
打印行号,makefile 继续执行
$(error “error: this will stop the compile”)
打印行号,停止执行
打印变量的值
$(info $(TARGET_DEVICE) )
使用echo增加调试信息
注:echo只能在target:后面的语句中使用,且前面是个TAB,
标签:info,打印,makefile,---,行号,调试信息,error,调试 From: https://www.cnblogs.com/god-of-death/p/14945439.html