Mypal/build/pymake/tests/dotslash.mk
2019-03-11 13:26:37 +03:00

10 lines
141 B
Makefile

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