summaryrefslogtreecommitdiff
path: root/tests/integration/project/files/workspace-updated-dependency-nested/Makefile
blob: 5248a70437f66b514f9aef229802bae9d4dbae56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: test.sh

hello: /etc/test/hello.txt
	cp $^ $@

tests: /etc/test/tests/*.txt
	cp $^ $@

test.sh: hello tests
	echo "#!/usr/bin/env sh" > $@
	echo -n "echo '" >> $@
	cat $^ >> $@
	echo -n "'" >> $@