summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/patsubst.mk
blob: 0c3efdc4b8445a6e60bf000380053e6ec53317e2 (plain)
1
2
3
4
5
6
7
all:
	test "$(patsubst foo,%.bar,foo)" = "%.bar"
	test "$(patsubst \%word,replace,word %word other)" = "word replace other"
	test "$(patsubst %.c,\%%.o,foo.c bar.o baz.cpp)" = "%foo.o bar.o baz.cpp"
	test "$(patsubst host_%.c,host_%.o,dir/host_foo.c host_bar.c)" = "dir/host_foo.c host_bar.o"
	test "$(patsubst foo,bar,dir/foo foo baz)" = "dir/foo bar baz"
	@echo TEST-PASS