2014-08-26 13:27:22 +00:00
|
|
|
# ##########################################################################
|
|
|
|
# LZ4 examples - Makefile
|
|
|
|
# Copyright (C) Yann Collet 2011-2014
|
2015-05-03 19:57:21 +00:00
|
|
|
#
|
2014-08-26 13:27:22 +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 :
|
2016-07-07 22:35:57 +00:00
|
|
|
# - LZ4 source repository : https://github.com/Cyan4973/lz4
|
2014-08-26 13:27:22 +00:00
|
|
|
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
|
|
|
|
# ##########################################################################
|
2015-05-03 19:57:21 +00:00
|
|
|
# This makefile compile and test
|
|
|
|
# example programs, using (mostly) LZ4 streaming library,
|
|
|
|
# kindly provided by Takayuki Matsuoka
|
2014-08-26 13:27:22 +00:00
|
|
|
# ##########################################################################
|
|
|
|
|
2017-06-08 19:51:56 +00:00
|
|
|
CPPFLAGS += -I../lib
|
|
|
|
CFLAGS ?= -O3
|
|
|
|
CFLAGS += -std=gnu99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes
|
2017-09-11 17:25:47 +00:00
|
|
|
FLAGS := $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(MOREFLAGS)
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2017-09-11 17:25:47 +00:00
|
|
|
TESTFILE = Makefile
|
|
|
|
LZ4DIR := ../lib
|
|
|
|
LZ4 = ../programs/lz4
|
2014-08-26 13:27:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Define *.exe as extension for Windows systems
|
|
|
|
ifneq (,$(filter Windows%,$(OS)))
|
|
|
|
EXT =.exe
|
|
|
|
VOID = nul
|
|
|
|
else
|
|
|
|
EXT =
|
|
|
|
VOID = /dev/null
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
2017-06-08 19:51:56 +00:00
|
|
|
all: printVersion doubleBuffer dictionaryRandomAccess ringBuffer ringBufferHC \
|
|
|
|
lineCompress frameCompress simpleBuffer
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2018-02-01 00:11:45 +00:00
|
|
|
$(LZ4DIR)/liblz4.a: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/lz4opt.h $(LZ4DIR)/lz4frame.c $(LZ4DIR)/lz4.h $(LZ4DIR)/lz4hc.h $(LZ4DIR)/lz4frame.h $(LZ4DIR)/lz4frame_static.h
|
|
|
|
$(MAKE) -C $(LZ4DIR) liblz4.a
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
printVersion: printVersion.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
doubleBuffer: blockStreaming_doubleBuffer.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2016-11-10 00:20:47 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
dictionaryRandomAccess: dictionaryRandomAccess.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
ringBuffer : blockStreaming_ringBuffer.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2014-10-22 07:07:56 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
ringBufferHC: HCStreaming_ringBuffer.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2014-08-26 13:27:22 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
lineCompress: blockStreaming_lineByLine.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2015-05-21 13:17:21 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
frameCompress: frameCompress.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
2015-10-22 08:57:21 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
compressFunctions: compress_functions.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT) -lrt
|
2015-10-26 06:38:14 +00:00
|
|
|
|
2018-02-01 07:17:52 +00:00
|
|
|
simpleBuffer: simple_buffer.c $(LZ4DIR)/liblz4.a
|
2018-02-01 00:11:45 +00:00
|
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
|
|
|
|
|
|
|
$(LZ4) :
|
|
|
|
$(MAKE) -C ../programs lz4
|
|
|
|
|
|
|
|
test : all $(LZ4)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Print Version ==="
|
2014-08-26 13:27:22 +00:00
|
|
|
./printVersion$(EXT)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Simple compression example ==="
|
|
|
|
./simpleBuffer$(EXT)
|
|
|
|
@echo "\n=== Double-buffer ==="
|
2014-08-26 13:27:22 +00:00
|
|
|
./doubleBuffer$(EXT) $(TESTFILE)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Ring Buffer ==="
|
2014-08-26 13:27:22 +00:00
|
|
|
./ringBuffer$(EXT) $(TESTFILE)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Ring Buffer + LZ4 HC ==="
|
2014-10-22 07:07:56 +00:00
|
|
|
./ringBufferHC$(EXT) $(TESTFILE)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Compress line by line ==="
|
2014-08-26 13:27:22 +00:00
|
|
|
./lineCompress$(EXT) $(TESTFILE)
|
2017-09-11 17:25:47 +00:00
|
|
|
@echo "\n=== Dictionary Random Access ==="
|
|
|
|
./dictionaryRandomAccess$(EXT) $(TESTFILE) $(TESTFILE) 1100 1400
|
|
|
|
@echo "\n=== Frame compression ==="
|
2016-11-10 00:20:47 +00:00
|
|
|
./frameCompress$(EXT) $(TESTFILE)
|
2015-06-18 03:37:19 +00:00
|
|
|
$(LZ4) -vt $(TESTFILE).lz4
|
2014-08-26 13:27:22 +00:00
|
|
|
|
|
|
|
clean:
|
2015-06-28 10:34:12 +00:00
|
|
|
@rm -f core *.o *.dec *-0 *-9 *-8192 *.lz4s *.lz4 \
|
2016-11-10 00:20:47 +00:00
|
|
|
printVersion$(EXT) doubleBuffer$(EXT) dictionaryRandomAccess$(EXT) \
|
|
|
|
ringBuffer$(EXT) ringBufferHC$(EXT) lineCompress$(EXT) frameCompress$(EXT) \
|
|
|
|
compressFunctions$(EXT) simpleBuffer$(EXT)
|
2014-08-26 13:27:22 +00:00
|
|
|
@echo Cleaning completed
|