8 lines
104 B
Plaintext
8 lines
104 B
Plaintext
all: output.txt
|
|
|
|
output.txt: input.txt
|
|
cat input.txt > output.txt
|
|
|
|
input.txt:
|
|
echo "Test" > input.txt
|