10 lines
164 B
Makefile
10 lines
164 B
Makefile
|
all:
|
||
|
@>&2 echo "Please provide an explicit target"
|
||
|
@exit 1
|
||
|
|
||
|
tests/data:
|
||
|
dd if=/dev/urandom of="$@" bs=512K count=4
|
||
|
|
||
|
clean:
|
||
|
rm -f tests/data.gz tests/gzip.synth
|