1foo:=$(join a b,.c .o)
2
3# produces `a.c b.o'.
4test:
5	echo $(foo)
6
7