标签: makefile
如何在makefile中构建目标时设置调试变量。
我只想在使用debug_flag构建目标时设置true变量make target。
debug_flag
true
make target
答案 0 :(得分:0)
您可以使用以下Makefile:
Makefile
debug_flag=false #here VAR is assigned with the value true only when you build target. target: debug_flag=true target: echo $(debug_flag)