标签: makefile
如何在makefile目标中定义动态变量?例如:
all: VAR := $@ @echo $(VAR)
答案 0 :(得分:11)
我意识到这是正确的方法:
all: VAR = $@ all: @echo $(VAR)