blob: a20e447255e28d9409b16ea49d3559b6a003ee3b [file] [log] [blame]
Fumitoshi Ukai50e1aef2015-03-31 10:35:25 +09001# http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
2comma:= ,
3empty:=
4space:= $(empty) $(empty)
5foo:= a b c
6bar:= $(subst $(space),$(comma),$(foo))
7# bar is now `a,b,c'
8
9test:
10 echo $(bar)