summaryrefslogtreecommitdiffstats
path: root/programs/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-06-29 03:43:12 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-06-29 03:43:12 (GMT)
commit6fe48b91832b9f8b5869a8a6d2a86b2b0d99988a (patch)
tree4767c8686b343a8514f6d377f807e500aa6a13d4 /programs/Makefile
parent15603d956663de18361ed5f06b3b02333ebbc9b1 (diff)
downloadlz4-6fe48b91832b9f8b5869a8a6d2a86b2b0d99988a.zip
lz4-6fe48b91832b9f8b5869a8a6d2a86b2b0d99988a.tar.gz
lz4-6fe48b91832b9f8b5869a8a6d2a86b2b0d99988a.tar.bz2
changed datagen to remove one malloc
Diffstat (limited to 'programs/Makefile')
-rw-r--r--programs/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 43f1789..f422902 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -34,7 +34,7 @@
# datagen : generates synthetic data samples for tests & benchmarks
# ##########################################################################
-RELEASE?= r130
+RELEASE?= r131
DESTDIR?=
PREFIX ?= /usr/local
@@ -173,8 +173,7 @@ test-lz4-sparse: lz4 datagen
echo "Hello World 3 !" | ./lz4 --no-frame-crc | ./lz4 -d -c
@echo "\n Compatibility with Append :"
./datagen -P100 -g1M > tmp1M
- cat tmp1M > tmp2M
- cat tmp1M >> tmp2M
+ cat tmp1M tmp1M > tmp2M
./lz4 -B5 -v tmp1M tmpC
./lz4 -d -v tmpC tmpR
./lz4 -d -v tmpC >> tmpR