blob: 32dc1484501f132f8cf02976967fbb7a69002077 [file] [log] [blame]
Fumitoshi Ukai8310a4f2015-04-02 11:47:30 +09001# from gyp-generated Makefile
2empty :=
3space := $(empty) $(empty)
4
5replace_spaces = $(subst $(space),?,$1)
6unreplace_spaces = $(subst ?,$(space),$1)
7dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
8
9test: foo
10 echo $(call dirx,foo/bar)
11 echo $(call dirx,foo bar/baz quux)
12 echo $(call dirx,foo,bar)
13
14foo:
15 mkdir foo "foo bar"
16