summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/phony.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/phony.mk')
-rw-r--r--build/pymake/tests/phony.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/build/pymake/tests/phony.mk b/build/pymake/tests/phony.mk
new file mode 100644
index 000000000..36db4d121
--- /dev/null
+++ b/build/pymake/tests/phony.mk
@@ -0,0 +1,10 @@
+$(shell \
+touch dep; \
+sleep 2; \
+touch all; \
+)
+
+all:: dep
+ @echo TEST-PASS
+
+.PHONY: all