blob: c7229d2d61089eec55ef6f07d30e1f02a9b0a7d3 [file] [log] [blame]
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 "'" >> $@