2007年8月21日星期二

makefile 变量

varA = xxx
# reference varA to xxx, varA will not expand at once. It is muck like a symbol reference.
# Caoution of that symbol reference causes recursive expanding.

varA := xxx
# give varA an instantial value.

没有评论: