mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
11 lines
283 B
Makefile
11 lines
283 B
Makefile
unknown var = uval
|
|
|
|
all:
|
|
test "$(subst a,b,value)" = "vblue"
|
|
test "${subst a,b,va)lue}" = "vb)lue"
|
|
test "$(subst /,\,ab/c)" = "ab\c"
|
|
test '$(subst a,b,\\#)' = '\\#'
|
|
test "$( subst a,b,value)" = ""
|
|
test "$(Subst a,b,value)" = ""
|
|
test "$(unknown var)" = "uval"
|
|
@echo TEST-PASS
|