summaryrefslogtreecommitdiff
path: root/tests/integration/project/files/workspace-updated-dependency-failed/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/project/files/workspace-updated-dependency-failed/Makefile')
-rw-r--r--tests/integration/project/files/workspace-updated-dependency-failed/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/integration/project/files/workspace-updated-dependency-failed/Makefile b/tests/integration/project/files/workspace-updated-dependency-failed/Makefile
new file mode 100644
index 000000000..c7229d2d6
--- /dev/null
+++ b/tests/integration/project/files/workspace-updated-dependency-failed/Makefile
@@ -0,0 +1,13 @@
+all: test.sh
+
+hello: /etc/test/hello.txt
+ cp $^ $@
+
+brazil: /etc/test/brazil.txt
+ cp $^ $@
+
+test.sh: hello brazil
+ echo "#!/usr/bin/env sh" > $@
+ echo -n "echo '" >> $@
+ cat $^ >> $@
+ echo -n "'" >> $@