summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/implicit-dir.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/implicit-dir.mk')
-rw-r--r--build/pymake/tests/implicit-dir.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/build/pymake/tests/implicit-dir.mk b/build/pymake/tests/implicit-dir.mk
new file mode 100644
index 000000000..c7f75e8d4
--- /dev/null
+++ b/build/pymake/tests/implicit-dir.mk
@@ -0,0 +1,16 @@
+# Implicit rules have special instructions to deal with directories, so that a pattern rule which doesn't directly apply
+# may still be used.
+
+all: dir/host_test.otest
+
+host_%.otest: %.osource extra.file
+ @echo making $@ from $<
+
+test.osource:
+ @echo TEST-FAIL should have made dir/test.osource
+
+dir/test.osource:
+ @echo TEST-PASS made the correct dependency
+
+extra.file:
+ @echo building $@