1# TODO(c) fix parser. no rule to make target "test"?
2TSV:=test: A=PASS
3A_EQ_B:=A=B
4EQ==
5$(TSV)
6test: A$(EQ)B
7
8$(A_EQ_B):
9	echo $(A)
10