tenfourfox/build/pymake/tests/dotslash.mk

10 lines
141 B
Makefile
Raw Normal View History

2017-04-19 07:56:45 +00:00
$(shell touch foo.in)
all: foo.out
test "$(wildcard ./*.in)" = "./foo.in"
@echo TEST-PASS
./%.out: %.in
test "$@" = "foo.out"
cp $< $@