2014-07-05 12:33:57 +00:00
# ##########################################################################
2014-01-07 18:47:50 +00:00
# LZ4 programs - Makefile
2014-12-13 14:05:46 +00:00
# Copyright (C) Yann Collet 2011-2015
#
2014-01-07 18:47:50 +00:00
# GPL v2 License
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# You can contact the author at :
2015-03-15 19:40:38 +00:00
# - LZ4 source repository : https://github.com/Cyan4973/lz4
2015-03-01 23:11:34 +00:00
# - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
2014-07-05 12:33:57 +00:00
# ##########################################################################
2014-01-07 18:47:50 +00:00
# lz4 : Command Line Utility, supporting gzip-like arguments
# lz4c : CLU, supporting also legacy lz4demo arguments
# lz4c32: Same as lz4c, but forced to compile in 32-bits mode
# fuzzer : Test tool, to check lz4 integrity on target platform
# fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode
2015-04-01 17:21:03 +00:00
# frametest : Test tool, to check lz4frame integrity on target platform
# frametest32: Same as frametest, but forced to compile in 32-bits mode
2014-01-07 18:47:50 +00:00
# fullbench : Precisely measure speed for each LZ4 function variant
# fullbench32: Same as fullbench, but forced to compile in 32-bits mode
2015-04-01 17:21:03 +00:00
# datagen : generates synthetic data samples for tests & benchmarks
2014-07-05 12:33:57 +00:00
# ##########################################################################
2014-01-07 18:47:50 +00:00
2015-04-01 17:21:03 +00:00
RELEASE ?= r129
2014-08-13 15:44:44 +00:00
DESTDIR ?=
2015-03-15 19:40:38 +00:00
PREFIX ?= /usr/local
2014-08-13 15:44:44 +00:00
CFLAGS ?= -O3
2014-12-17 11:32:49 +00:00
CFLAGS += -std= c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -pedantic -DLZ4_VERSION= \" $( RELEASE) \"
2015-04-10 22:42:17 +00:00
FLAGS := -I../lib $( CPPFLAGS) $( CFLAGS) $( LDFLAGS)
2014-01-07 18:47:50 +00:00
2015-04-10 22:42:17 +00:00
BINDIR := $( PREFIX) /bin
MANDIR := $( PREFIX) /share/man/man1
LZ4DIR := ../lib
2014-05-20 18:14:53 +00:00
2014-01-07 18:47:50 +00:00
# Define *.exe as extension for Windows systems
i f n e q ( , $( filter Windows %,$ ( OS ) ) )
EXT = .exe
2014-06-03 22:44:49 +00:00
VOID = nul
2014-01-07 18:47:50 +00:00
e l s e
EXT =
2014-06-03 22:44:49 +00:00
VOID = /dev/null
2014-01-07 18:47:50 +00:00
e n d i f
2014-10-28 14:35:43 +00:00
# Select test target for Travis CI's Build Matrix
2015-04-10 22:42:17 +00:00
TRAVIS_TARGET := $( LZ4_TRAVIS_CI_ENV)
TEST_FILES := COPYING
TEST_TARGETS := test-native
2015-04-12 15:40:58 +00:00
FUZZER_TIME := -T9mn
2014-10-28 14:35:43 +00:00
2015-03-25 22:59:38 +00:00
default : lz 4
2014-01-07 18:47:50 +00:00
2015-03-25 22:59:38 +00:00
m32 : lz 4c 32 fullbench 32 fuzzer 32 frametest 32
bins : lz 4 lz 4c fullbench fuzzer frametest datagen
all : bins m 32
2014-01-07 18:47:50 +00:00
2014-11-30 16:59:31 +00:00
lz4 : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /xxhash .c bench .c lz 4io .c lz 4cli .c
2014-12-01 00:25:18 +00:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
2014-11-30 16:59:31 +00:00
lz4c : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /xxhash .c bench .c lz 4io .c lz 4cli .c
2014-12-01 00:25:18 +00:00
$( CC) $( FLAGS) -DENABLE_LZ4C_LEGACY_OPTIONS $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
2014-11-30 16:59:31 +00:00
lz4c32 : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /xxhash .c bench .c lz 4io .c lz 4cli .c
2014-12-01 00:25:18 +00:00
$( CC) -m32 $( FLAGS) -DENABLE_LZ4C_LEGACY_OPTIONS $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
2014-09-13 22:44:07 +00:00
fullbench : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /xxhash .c fullbench .c
2014-06-03 22:44:49 +00:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-09-13 22:44:07 +00:00
fullbench32 : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /xxhash .c fullbench .c
2014-06-03 22:44:49 +00:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2014-11-30 16:59:31 +00:00
fuzzer : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c fuzzer .c
2014-03-24 20:59:20 +00:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
2014-09-13 22:44:07 +00:00
fuzzer32 : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c fuzzer .c
2014-03-24 20:59:20 +00:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
2014-11-30 16:59:31 +00:00
frametest : $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c frametest .c
2014-08-30 17:14:44 +00:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-11-30 16:59:31 +00:00
frametest32 : $( LZ 4DIR ) /lz 4frame .c $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c frametest .c
2014-10-28 10:32:42 +00:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2015-03-09 23:12:51 +00:00
datagen : datagen .c datagencli .c
2014-03-24 20:59:20 +00:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-07 18:47:50 +00:00
clean :
2015-04-11 09:25:08 +00:00
@rm -f core *.o *.test tmp* \
2014-01-07 18:47:50 +00:00
lz4$( EXT) lz4c$( EXT) lz4c32$( EXT) \
2014-06-03 22:44:49 +00:00
fullbench$( EXT) fullbench32$( EXT) \
2014-08-30 17:14:44 +00:00
fuzzer$( EXT) fuzzer32$( EXT) \
2014-10-28 10:32:42 +00:00
frametest$( EXT) frametest32$( EXT) \
datagen$( EXT)
2014-01-07 18:47:50 +00:00
@echo Cleaning completed
2014-07-26 14:15:00 +00:00
#------------------------------------------------------------------------
#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
i f n e q ( , $( filter $ ( shell uname ) ,Linux Darwin GNU /kFreeBSD GNU ) )
2014-01-07 18:47:50 +00:00
install : lz 4 lz 4c
2014-04-15 14:47:48 +00:00
@echo Installing binaries
2014-01-07 18:47:50 +00:00
@install -d -m 755 $( DESTDIR) $( BINDIR) / $( DESTDIR) $( MANDIR) /
2015-03-22 12:42:00 +00:00
@install -m 755 lz4 $( DESTDIR) $( BINDIR) /lz4
@ln -sf lz4 $( DESTDIR) $( BINDIR) /lz4cat
@ln -sf lz4 $( DESTDIR) $( BINDIR) /unlz4
@install -m 755 lz4c $( DESTDIR) $( BINDIR) /lz4c
2014-04-15 14:47:48 +00:00
@echo Installing man pages
2014-01-07 18:47:50 +00:00
@install -m 644 lz4.1 $( DESTDIR) $( MANDIR) /lz4.1
2015-03-22 12:42:00 +00:00
@ln -sf lz4.1 $( DESTDIR) $( MANDIR) /lz4c.1
@ln -sf lz4.1 $( DESTDIR) $( MANDIR) /lz4cat.1
@ln -sf lz4.1 $( DESTDIR) $( MANDIR) /unlz4.1
2014-01-07 18:47:50 +00:00
@echo lz4 installation completed
uninstall :
2014-03-23 11:15:37 +00:00
rm -f $( DESTDIR) $( BINDIR) /lz4cat
2015-03-15 19:40:38 +00:00
rm -f $( DESTDIR) $( BINDIR) /unlz4
2015-03-22 12:42:00 +00:00
[ -x $( DESTDIR) $( BINDIR) /lz4 ] && rm -f $( DESTDIR) $( BINDIR) /lz4
[ -x $( DESTDIR) $( BINDIR) /lz4c ] && rm -f $( DESTDIR) $( BINDIR) /lz4c
2014-01-07 18:47:50 +00:00
[ -f $( DESTDIR) $( MANDIR) /lz4.1 ] && rm -f $( DESTDIR) $( MANDIR) /lz4.1
2015-03-22 12:42:00 +00:00
rm -f $( DESTDIR) $( MANDIR) /lz4c.1
rm -f $( DESTDIR) $( MANDIR) /lz4cat.1
rm -f $( DESTDIR) $( MANDIR) /unlz4.1
2014-11-23 17:36:04 +00:00
@echo lz4 programs successfully uninstalled
2014-01-07 18:47:50 +00:00
2014-10-28 14:58:25 +00:00
test : test -lz 4 test -lz 4c test -frametest test -fullbench test -fuzzer test -mem
2014-05-20 18:14:53 +00:00
2014-10-28 14:58:25 +00:00
test32 : test -lz 4c 32 test -frametest 32 test -fullbench 32 test -fuzzer 32 test -mem 32
2014-05-20 18:14:53 +00:00
2014-10-28 14:35:43 +00:00
test-all : test test 32
2014-07-21 20:01:59 +00:00
2014-10-28 14:35:43 +00:00
test-travis : $( TRAVIS_TARGET )
2014-04-16 14:26:15 +00:00
2015-03-22 12:42:00 +00:00
test-lz4-sparse : lz 4 datagen
@echo ---- test sparse file support ----
2015-04-18 11:44:38 +00:00
./datagen -g5M -P100 > tmpSrc
./lz4 -B4D tmpSrc | ./lz4 -dv --sparse > tmpB4
diff -s tmpSrc tmpB4
./lz4 -B5D tmpSrc | ./lz4 -dv --sparse > tmpB5
diff -s tmpSrc tmpB5
./lz4 -B6D tmpSrc | ./lz4 -dv --sparse > tmpB6
diff -s tmpSrc tmpB6
./lz4 -B7D tmpSrc | ./lz4 -dv --sparse > tmpB7
diff -s tmpSrc tmpB7
./lz4 tmpSrc | ./lz4 -dv --no-sparse > tmpNoSparse
diff -s tmpSrc tmpNoSparse
2015-03-22 12:42:00 +00:00
ls -ls tmp*
2015-03-23 19:03:45 +00:00
./datagen -s1 -g1200007 -P100 | ./lz4 | ./lz4 -dv --sparse > tmpOdd # Odd size file (to not finish on an exact nb of blocks)
2015-03-22 12:42:00 +00:00
./datagen -s1 -g1200007 -P100 | diff -s - tmpOdd
ls -ls tmpOdd
@rm tmp*
test-lz4-contentSize : lz 4 datagen
@echo ---- test original size support ----
2015-03-23 01:20:42 +00:00
./datagen -g15M > tmp
./lz4 -v tmp | ./lz4 -t
2015-03-23 19:03:45 +00:00
./lz4 -v --content-size tmp | ./lz4 -d > tmp2
2015-03-23 01:20:42 +00:00
diff -s tmp tmp2
2015-04-02 14:11:22 +00:00
# test large size [2-4] GB
@./datagen -g3G -P100 | ./lz4 | ./lz4 --decompress --force --sparse - tmp
@ls -ls tmp
./lz4 --quiet --content-size tmp | ./lz4 --verbose --decompress --force --sparse - tmp2
@ls -ls tmp2
2015-03-23 01:20:42 +00:00
@rm tmp*
2015-03-22 12:42:00 +00:00
2015-03-23 01:20:42 +00:00
test-lz4-frame-concatenation : lz 4 datagen
2015-03-13 01:24:08 +00:00
@echo ---- test frame concatenation ----
2014-12-16 21:03:16 +00:00
@echo -n > empty.test
@echo hi > nonempty.test
2014-11-04 11:11:14 +00:00
cat nonempty.test empty.test nonempty.test > orig.test
@./lz4 -zq empty.test > empty.lz4.test
@./lz4 -zq nonempty.test > nonempty.lz4.test
cat nonempty.lz4.test empty.lz4.test nonempty.lz4.test > concat.lz4.test
./lz4 -d concat.lz4.test > result.test
sdiff orig.test result.test
@rm *.test
2014-11-04 19:56:38 +00:00
@echo frame concatenation test completed
2015-03-23 01:20:42 +00:00
2015-04-15 15:24:43 +00:00
test-lz4-multiple : lz 4 datagen
@echo ---- test multiple files ----
2015-04-16 06:16:48 +00:00
@./datagen -s1 > tmp1 2> $( VOID)
@./datagen -s2 -g100K > tmp2 2> $( VOID)
@./datagen -s3 -g1M > tmp3 2> $( VOID)
2015-04-15 15:24:43 +00:00
./lz4 -f -m tmp*
ls -ls tmp*
rm tmp1 tmp2 tmp3
./lz4 -df -m *.lz4
ls -ls tmp*
2015-04-16 15:45:58 +00:00
./lz4 -f -m tmp1 notHere tmp2; echo $$ ?
2015-04-15 15:24:43 +00:00
@rm tmp*
2015-04-20 08:26:16 +00:00
test-lz4 : lz 4 datagen test -lz 4-multiple test -lz 4-sparse test -lz 4-contentSize test -lz 4-frame -concatenation
2015-03-23 01:20:42 +00:00
@echo ---- test lz4 basic compression/decompression ----
./datagen -g0 | ./lz4 -v | ./lz4 -t
./datagen -g16KB | ./lz4 -9 | ./lz4 -t
./datagen | ./lz4 | ./lz4 -t
./datagen -g6M -P99 | ./lz4 -9BD | ./lz4 -t
2015-04-10 13:24:13 +00:00
./datagen -g17M | ./lz4 -9v | ./lz4 -qt
2015-03-23 01:20:42 +00:00
./datagen -g33M | ./lz4 --no-frame-crc | ./lz4 -t
./datagen -g256MB | ./lz4 -vqB4D | ./lz4 -t
2015-04-10 13:24:13 +00:00
./datagen -g6GB | ./lz4 -vqB5D | ./lz4 -qt
./datagen -g6GB | ./lz4 -vq9BD | ./lz4 -qt
2015-03-16 19:38:25 +00:00
@echo ---- test pass-through ----
2015-03-22 12:42:00 +00:00
./datagen | ./lz4 -tf
2014-04-16 14:26:15 +00:00
2014-06-03 22:44:49 +00:00
test-lz4c : lz 4c datagen
2015-03-22 12:42:00 +00:00
./datagen -g256MB | ./lz4c -l -v | ./lz4c -t
test-lz4c32 : lz 4 lz 4c 32 datagen
./datagen -g16KB | ./lz4c32 -9 | ./lz4c32 -t
./datagen -g16KB | ./lz4c32 -9 | ./lz4 -t
./datagen | ./lz4c32 | ./lz4c32 -t
./datagen | ./lz4c32 | ./lz4 -t
2015-04-10 22:42:17 +00:00
./datagen -g256MB | ./lz4c32 -vqB4D | ./lz4c32 -qt
./datagen -g256MB | ./lz4c32 -vqB4D | ./lz4 -qt
./datagen -g6GB | ./lz4c32 -vqB5D | ./lz4c32 -qt
./datagen -g6GB | ./lz4c32 -vq9BD | ./lz4 -qt
2014-04-16 14:26:15 +00:00
2014-04-22 23:54:32 +00:00
test-fullbench : fullbench
2015-04-15 09:34:08 +00:00
./fullbench --no-prompt $( NB_LOOPS) $( TEST_FILES)
2014-04-22 23:54:32 +00:00
test-fullbench32 : fullbench 32
2015-04-15 09:34:08 +00:00
./fullbench32 --no-prompt $( NB_LOOPS) $( TEST_FILES)
2014-04-22 23:54:32 +00:00
2014-04-16 14:26:15 +00:00
test-fuzzer : fuzzer
2015-04-10 22:42:17 +00:00
./fuzzer $( FUZZER_TIME)
2014-04-16 14:26:15 +00:00
test-fuzzer32 : fuzzer 32
2015-04-10 22:42:17 +00:00
./fuzzer32 $( FUZZER_TIME)
2014-04-16 14:26:15 +00:00
2014-10-28 14:58:25 +00:00
test-frametest : frametest
2015-04-10 22:42:17 +00:00
./frametest $( FUZZER_TIME)
2014-09-01 21:44:02 +00:00
2014-10-28 14:58:25 +00:00
test-frametest32 : frametest 32
2015-04-10 22:42:17 +00:00
./frametest32 $( FUZZER_TIME)
2014-10-28 10:32:42 +00:00
2015-04-06 00:02:24 +00:00
test-mem : lz 4 datagen fuzzer frametest fullbench
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./datagen -g50M > $( VOID)
2014-08-01 18:21:26 +00:00
./datagen -g16KB > tmp
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 -9 -BD -f tmp $( VOID)
2015-04-14 15:34:37 +00:00
./datagen -g16KB -s2 > tmp2
./datagen -g16KB -s3 > tmp3
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 --force --multiple tmp tmp2 tmp3
2014-06-11 20:40:16 +00:00
./datagen -g16MB > tmp
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 -9 -B5D -f tmp tmp2
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 -t tmp2
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 -bi1 tmp
valgrind --leak-check= yes --error-exitcode= 1 ./fullbench -i1 tmp tmp2
2015-03-23 19:03:45 +00:00
./datagen -g256MB > tmp
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./lz4 -B4D -f -vq tmp $( VOID)
2015-03-22 12:42:00 +00:00
rm tmp*
2015-04-14 20:02:12 +00:00
valgrind --leak-check= yes --error-exitcode= 1 ./fuzzer -i64 -t1
valgrind --leak-check= yes --error-exitcode= 1 ./frametest -i256
2014-06-09 00:01:04 +00:00
test-mem32 : lz 4c 32 datagen
2014-06-11 21:02:46 +00:00
# unfortunately, valgrind doesn't seem to work with non-native binary. If someone knows how to do a valgrind-test on a 32-bits exe with a 64-bits system...
2014-04-16 14:26:15 +00:00
2014-01-07 18:47:50 +00:00
e n d i f