2014-07-05 20:33:57 +08:00
# ##########################################################################
2014-01-08 02:47:50 +08:00
# LZ4 programs - Makefile
# Copyright (C) Yann Collet 2011-2014
# 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 :
# - LZ4 source repository : http://code.google.com/p/lz4/
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
2014-07-05 20:33:57 +08:00
# ##########################################################################
2014-01-08 02:47:50 +08: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
# fullbench : Precisely measure speed for each LZ4 function variant
# fullbench32: Same as fullbench, but forced to compile in 32-bits mode
2014-07-05 20:33:57 +08:00
# ##########################################################################
2014-01-08 02:47:50 +08:00
2014-11-24 01:36:04 +08:00
RELEASE = r125
2014-08-13 23:44:44 +08:00
DESTDIR ?=
PREFIX ?= /usr
CC := $( CC)
CFLAGS ?= -O3
2014-11-04 17:32:50 +08:00
CFLAGS += -std= c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -DLZ4_VERSION= \" $( RELEASE) \"
2014-12-01 06:32:12 +08:00
FLAGS = -I../lib $( CPPFLAGS) $( CFLAGS) $( LDFLAGS)
2014-01-08 02:47:50 +08:00
BINDIR = $( PREFIX) /bin
MANDIR = $( PREFIX) /share/man/man1
2014-12-01 06:32:12 +08:00
LZ4DIR = ../lib
2014-01-08 02:47:50 +08:00
2014-04-16 22:26:15 +08:00
TEST_FILES = COPYING
2014-08-26 21:39:09 +08:00
TEST_TARGETS = test-native
2014-05-21 02:14:53 +08:00
2014-01-08 02:47:50 +08:00
# Define *.exe as extension for Windows systems
i f n e q ( , $( filter Windows %,$ ( OS ) ) )
EXT = .exe
2014-06-04 06:44:49 +08:00
VOID = nul
2014-01-08 02:47:50 +08:00
e l s e
EXT =
2014-06-04 06:44:49 +08:00
VOID = /dev/null
2014-01-08 02:47:50 +08:00
e n d i f
2014-10-28 22:35:43 +08:00
# Select test target for Travis CI's Build Matrix
2014-11-05 03:56:38 +08:00
TRAVIS_TARGET = $( LZ4_TRAVIS_CI_ENV)
2014-10-28 22:35:43 +08:00
2014-01-08 02:47:50 +08:00
default : lz 4 lz 4c
2014-10-28 22:35:43 +08:00
all : lz 4 lz 4c lz 4c 32 fullbench fullbench 32 fuzzer fuzzer 32 frametest frametest 32 datagen
2014-01-08 02:47:50 +08:00
2014-12-01 00:59:31 +08: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 08:25:18 +08:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
2014-12-01 00:59:31 +08: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 08:25:18 +08:00
$( CC) $( FLAGS) -DENABLE_LZ4C_LEGACY_OPTIONS $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
2014-12-01 00:59:31 +08: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 08:25:18 +08:00
$( CC) -m32 $( FLAGS) -DENABLE_LZ4C_LEGACY_OPTIONS $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
2014-09-14 06:44:07 +08: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-04 06:44:49 +08:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-09-14 06:44:07 +08: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-04 06:44:49 +08:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2014-12-01 00:59:31 +08:00
fuzzer : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c fuzzer .c
2014-03-25 04:59:20 +08:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
2014-09-14 06:44:07 +08:00
fuzzer32 : $( LZ 4DIR ) /lz 4.c $( LZ 4DIR ) /lz 4hc .c $( LZ 4DIR ) /xxhash .c fuzzer .c
2014-03-25 04:59:20 +08:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
2014-12-01 00:59:31 +08: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-31 01:14:44 +08:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-12-01 00:59:31 +08: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 18:32:42 +08:00
$( CC) -m32 $( FLAGS) $^ -o $@ $( EXT)
2014-06-04 06:44:49 +08:00
datagen : datagen .c
2014-03-25 04:59:20 +08:00
$( CC) $( FLAGS) $^ -o $@ $( EXT)
2014-01-08 02:47:50 +08:00
clean :
2014-11-04 19:11:14 +08:00
@rm -f core *.o *.test \
2014-01-08 02:47:50 +08:00
lz4$( EXT) lz4c$( EXT) lz4c32$( EXT) \
2014-06-04 06:44:49 +08:00
fullbench$( EXT) fullbench32$( EXT) \
2014-08-31 01:14:44 +08:00
fuzzer$( EXT) fuzzer32$( EXT) \
2014-10-28 18:32:42 +08:00
frametest$( EXT) frametest32$( EXT) \
datagen$( EXT)
2014-01-08 02:47:50 +08:00
@echo Cleaning completed
2014-07-26 22:15:00 +08: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-08 02:47:50 +08:00
install : lz 4 lz 4c
2014-04-15 22:47:48 +08:00
@echo Installing binaries
2014-01-08 02:47:50 +08:00
@install -d -m 755 $( DESTDIR) $( BINDIR) / $( DESTDIR) $( MANDIR) /
2014-11-24 01:36:04 +08:00
@install -m 755 lz4$( EXT) $( DESTDIR) $( BINDIR) /lz4$( EXT)
@ln -sf lz4$( EXT) $( DESTDIR) $( BINDIR) /lz4cat
@install -m 755 lz4c$( EXT) $( DESTDIR) $( BINDIR) /lz4c$( EXT)
2014-04-15 22:47:48 +08:00
@echo Installing man pages
2014-01-08 02:47:50 +08:00
@install -m 644 lz4.1 $( DESTDIR) $( MANDIR) /lz4.1
2014-04-15 22:47:48 +08:00
@install -m 644 lz4c.1 $( DESTDIR) $( MANDIR) /lz4c.1
@install -m 644 lz4cat.1 $( DESTDIR) $( MANDIR) /lz4cat.1
2014-01-08 02:47:50 +08:00
@echo lz4 installation completed
uninstall :
2014-03-23 19:15:37 +08:00
rm -f $( DESTDIR) $( BINDIR) /lz4cat
2014-11-24 01:36:04 +08:00
[ -x $( DESTDIR) $( BINDIR) /lz4$( EXT) ] && rm -f $( DESTDIR) $( BINDIR) /lz4$( EXT)
[ -x $( DESTDIR) $( BINDIR) /lz4c$( EXT) ] && rm -f $( DESTDIR) $( BINDIR) /lz4c$( EXT)
2014-01-08 02:47:50 +08:00
[ -f $( DESTDIR) $( MANDIR) /lz4.1 ] && rm -f $( DESTDIR) $( MANDIR) /lz4.1
2014-04-23 07:54:32 +08:00
[ -f $( DESTDIR) $( MANDIR) /lz4c.1 ] && rm -f $( DESTDIR) $( MANDIR) /lz4c.1
[ -f $( DESTDIR) $( MANDIR) /lz4cat.1 ] && rm -f $( DESTDIR) $( MANDIR) /lz4cat.1
2014-11-24 01:36:04 +08:00
@echo lz4 programs successfully uninstalled
2014-01-08 02:47:50 +08:00
2014-10-28 22:58:25 +08:00
test : test -lz 4 test -lz 4c test -frametest test -fullbench test -fuzzer test -mem
2014-05-21 02:14:53 +08:00
2014-10-28 22:58:25 +08:00
test32 : test -lz 4c 32 test -frametest 32 test -fullbench 32 test -fuzzer 32 test -mem 32
2014-05-21 02:14:53 +08:00
2014-10-28 22:35:43 +08:00
test-all : test test 32
2014-07-22 04:01:59 +08:00
2014-10-28 22:35:43 +08:00
test-travis : $( TRAVIS_TARGET )
2014-04-16 22:26:15 +08:00
2014-06-04 06:44:49 +08:00
test-lz4 : lz 4 datagen
2014-08-02 02:21:26 +08:00
./datagen -g16KB | ./lz4 -9 | ./lz4 -vdq > $( VOID)
./datagen | ./lz4 | ./lz4 -vdq > $( VOID)
2014-06-10 13:10:08 +08:00
./datagen -g256MB | ./lz4 -vqB4D | ./lz4 -vdq > $( VOID)
./datagen -g6GB | ./lz4 -vqB5D | ./lz4 -vdq > $( VOID)
2014-11-05 03:56:38 +08:00
# test frame concatenation with null-length frame
2014-11-04 19:11:14 +08:00
echo -n > empty.test
echo hi > nonempty.test
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-05 03:56:38 +08:00
@echo frame concatenation test completed
# test frame concatenation with null-length frame
2014-12-01 00:59:31 +08:00
2014-04-16 22:26:15 +08:00
2014-06-04 06:44:49 +08:00
test-lz4c : lz 4c datagen
2014-12-01 00:59:31 +08:00
./datagen -g256MB | ./lz4c -l -v -B4D | ./lz4c -vdq > $( VOID)
2014-04-16 22:26:15 +08:00
2014-07-22 04:01:59 +08:00
test-lz4c32 : lz 4 lz 4c 32 lz 4 datagen
2014-08-02 02:21:26 +08:00
./datagen -g16KB | ./lz4c32 -9 | ./lz4c32 -vdq > $( VOID)
./datagen -g16KB | ./lz4c32 -9 | ./lz4 -vdq > $( VOID)
./datagen | ./lz4c32 | ./lz4c32 -vdq > $( VOID)
./datagen | ./lz4c32 | ./lz4 -vdq > $( VOID)
2014-06-10 13:10:08 +08:00
./datagen -g256MB | ./lz4c32 -vqB4D | ./lz4c32 -vdq > $( VOID)
./datagen -g256MB | ./lz4c32 -vqB4D | ./lz4 -vdq > $( VOID)
./datagen -g6GB | ./lz4c32 -vqB5D | ./lz4c32 -vdq > $( VOID)
2014-04-16 22:26:15 +08:00
2014-04-23 07:54:32 +08:00
test-fullbench : fullbench
2014-10-28 22:35:43 +08:00
./fullbench --no-prompt $( TEST_FILES)
2014-04-23 07:54:32 +08:00
test-fullbench32 : fullbench 32
2014-10-28 22:35:43 +08:00
./fullbench32 --no-prompt $( TEST_FILES)
2014-04-23 07:54:32 +08:00
2014-04-16 22:26:15 +08:00
test-fuzzer : fuzzer
2014-10-10 05:15:57 +08:00
./fuzzer
2014-04-16 22:26:15 +08:00
test-fuzzer32 : fuzzer 32
2014-10-10 05:15:57 +08:00
./fuzzer32
2014-04-16 22:26:15 +08:00
2014-10-28 22:58:25 +08:00
test-frametest : frametest
2014-09-02 05:44:02 +08:00
./frametest
2014-10-28 22:58:25 +08:00
test-frametest32 : frametest 32
2014-10-28 18:32:42 +08:00
./frametest32
2014-10-29 08:47:43 +08:00
test-mem : lz 4 datagen fuzzer frametest
2014-08-02 02:21:26 +08:00
./datagen -g16KB > tmp
2014-10-28 07:39:06 +08:00
valgrind --leak-check= yes ./lz4 -9 -BD -f tmp /dev/null
2014-06-12 04:40:16 +08:00
./datagen -g16MB > tmp
2014-10-28 07:39:06 +08:00
valgrind --leak-check= yes ./lz4 -9 -B5D -f tmp /dev/null
2014-08-02 02:21:26 +08:00
./datagen -g256MB > tmp
2014-11-30 19:58:00 +08:00
valgrind --leak-check= yes ./lz4 -B4D -f -vq tmp /dev/null
2014-06-09 08:01:04 +08:00
rm tmp
2014-12-11 06:00:50 +08:00
valgrind --leak-check= yes ./fuzzer -i64 -t1
2014-12-01 00:59:31 +08:00
valgrind --leak-check= yes ./frametest -i256
2014-06-09 08:01:04 +08:00
test-mem32 : lz 4c 32 datagen
2014-06-12 05:02:46 +08: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 22:26:15 +08:00
2014-01-08 02:47:50 +08:00
e n d i f