Makefile 打印变量的值

$(warning  $(XXX))   打印变量的值

1,使用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) )

2,使用echo增加调试信息(echo只能在target:后面的语句中使用,且前面是个TAB)
方法1: @echo "start the compilexxxxxxxxxxxxxxxxxxxxxxx"

方法2: @echo $(files)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐