blob: 61bea5f924d14822530fe428ad7f0a0de7aabeac [file] [log] [blame]
Shinichiro Hamaji4125cf42015-04-03 11:42:28 +09001XY:=x y
2X:=$(subst y, ,$(XY))
3Y:=$(subst x, ,$(XY))
4
5test:
6 echo $(X)
7 echo $(Y)
8 echo $(strip $(X))
9 echo $(strip $(Y))
10 echo $(strip $(Y),$(X))
11
12# TODO: Hard to tell why. Fix this.
13#test2:
14# echo $(strip $(X),$(Y))