summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/dotslash.mk
blob: 585db96b790eca6c1b7313c9fe58067b432f5138 (plain)
1
2
3
4
5
6
7
8
9
$(shell touch foo.in)

all: foo.out
	test "$(wildcard ./*.in)" = "./foo.in"
	@echo TEST-PASS

./%.out: %.in
	test "$@" = "foo.out"
	cp $< $@