summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/dotslash.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/dotslash.mk')
-rw-r--r--build/pymake/tests/dotslash.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/build/pymake/tests/dotslash.mk b/build/pymake/tests/dotslash.mk
new file mode 100644
index 000000000..585db96b7
--- /dev/null
+++ b/build/pymake/tests/dotslash.mk
@@ -0,0 +1,9 @@
+$(shell touch foo.in)
+
+all: foo.out
+ test "$(wildcard ./*.in)" = "./foo.in"
+ @echo TEST-PASS
+
+./%.out: %.in
+ test "$@" = "foo.out"
+ cp $< $@