allwinner_a64/android/build/kati/testcase/wildcard_with_commas.mk
2018-08-08 16:48:17 +08:00

14 lines
255 B
Makefile

files = $(wildcard *,*)
# test expectes empty, since no *,* found.
test:
echo $(files)
touch foo,bar
# when foo,bar doesn't exit, "make test2" report empty.
# next "make test2" reports "foo,bar".
test2: foo,bar
echo $(files)
foo,bar:
touch foo,bar