2015-03-26 13:16:20 +00:00
|
|
|
# ################################################################
|
|
|
|
# LZ4 - Makefile
|
2014-12-13 14:05:46 +00:00
|
|
|
# Copyright (C) Yann Collet 2011-2015
|
2015-03-26 13:16:20 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# BSD license
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
# are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
# list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
# list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
# other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
2013-09-09 09:06:21 +00:00
|
|
|
# You can contact the author at :
|
2015-03-15 19:40:38 +00:00
|
|
|
# - LZ4 source repository : https://github.com/Cyan4973/lz4
|
2015-03-26 13:16:20 +00:00
|
|
|
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
|
|
|
|
# ################################################################
|
|
|
|
|
|
|
|
# Version number
|
2015-05-15 14:51:07 +00:00
|
|
|
export VERSION=130
|
2015-03-26 13:16:20 +00:00
|
|
|
export RELEASE=r$(VERSION)
|
2014-03-12 14:51:59 +00:00
|
|
|
|
2014-08-08 08:23:00 +00:00
|
|
|
DESTDIR?=
|
2015-03-15 19:40:38 +00:00
|
|
|
PREFIX ?= /usr/local
|
2014-01-07 18:47:50 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
LIBDIR ?= $(PREFIX)/lib
|
|
|
|
INCLUDEDIR=$(PREFIX)/include
|
|
|
|
PRGDIR = programs
|
|
|
|
LZ4DIR = lib
|
2013-09-25 09:00:37 +00:00
|
|
|
|
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
# Select test target for Travis CI's Build Matrix
|
|
|
|
ifneq (,$(filter test-%,$(LZ4_TRAVIS_CI_ENV)))
|
|
|
|
TRAVIS_TARGET=prg-travis
|
|
|
|
else
|
|
|
|
TRAVIS_TARGET=$(LZ4_TRAVIS_CI_ENV)
|
|
|
|
endif
|
2015-03-26 10:41:55 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
# Define nul output
|
2015-03-26 10:41:55 +00:00
|
|
|
ifneq (,$(filter Windows%,$(OS)))
|
|
|
|
VOID = nul
|
2014-10-28 14:35:43 +00:00
|
|
|
else
|
2015-03-26 10:41:55 +00:00
|
|
|
VOID = /dev/null
|
2014-10-28 14:35:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2015-06-27 20:44:51 +00:00
|
|
|
.PHONY: default all lib lz4programs clean test
|
2015-06-27 09:30:31 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
default: lz4programs
|
2013-07-01 07:50:40 +00:00
|
|
|
|
2015-06-27 09:30:31 +00:00
|
|
|
all: lib
|
2015-03-26 13:16:20 +00:00
|
|
|
@cd $(PRGDIR); $(MAKE) -e all
|
2011-05-25 22:25:57 +00:00
|
|
|
|
2015-06-27 09:30:31 +00:00
|
|
|
lib:
|
|
|
|
@cd $(LZ4DIR); $(MAKE) -e all
|
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
lz4programs:
|
|
|
|
@cd $(PRGDIR); $(MAKE) -e
|
2013-08-12 08:35:52 +00:00
|
|
|
|
2011-05-25 22:25:57 +00:00
|
|
|
clean:
|
2015-03-26 13:16:20 +00:00
|
|
|
@cd $(PRGDIR); $(MAKE) clean > $(VOID)
|
|
|
|
@cd $(LZ4DIR); $(MAKE) clean > $(VOID)
|
|
|
|
@cd examples; $(MAKE) clean > $(VOID)
|
2015-05-15 00:27:44 +00:00
|
|
|
@cd test; $(MAKE) clean > $(VOID)
|
2013-09-25 09:00:37 +00:00
|
|
|
@echo Cleaning completed
|
|
|
|
|
|
|
|
|
2014-07-20 15:18:48 +00:00
|
|
|
#------------------------------------------------------------------------
|
2014-07-26 14:15:00 +00:00
|
|
|
#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
|
|
|
|
ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
|
2013-09-25 09:00:37 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
install:
|
|
|
|
@cd $(LZ4DIR); $(MAKE) -e install
|
|
|
|
@cd $(PRGDIR); $(MAKE) -e install
|
2013-09-25 09:00:37 +00:00
|
|
|
|
|
|
|
uninstall:
|
2015-03-26 13:16:20 +00:00
|
|
|
@cd $(LZ4DIR); $(MAKE) uninstall
|
|
|
|
@cd $(PRGDIR); $(MAKE) uninstall
|
|
|
|
|
|
|
|
travis-install:
|
|
|
|
sudo $(MAKE) install
|
|
|
|
|
|
|
|
test:
|
|
|
|
@cd $(PRGDIR); $(MAKE) -e test
|
2014-10-28 14:35:43 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
test-travis: $(TRAVIS_TARGET)
|
2014-11-04 09:50:17 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
cmake:
|
|
|
|
@cd cmake_unofficial; cmake CMakeLists.txt; $(MAKE)
|
2015-03-15 13:19:47 +00:00
|
|
|
|
2015-04-01 14:05:27 +00:00
|
|
|
gpptest: clean
|
2015-04-08 08:33:57 +00:00
|
|
|
$(MAKE) all CC=g++ CFLAGS="-O3 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
|
2015-04-01 14:05:27 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
clangtest: clean
|
2015-04-12 14:17:10 +00:00
|
|
|
$(MAKE) all CC=clang CPPFLAGS="-Werror -Wconversion -Wno-sign-conversion"
|
2015-03-10 15:57:42 +00:00
|
|
|
|
2015-04-09 22:53:55 +00:00
|
|
|
sanitize: clean
|
2015-04-16 11:48:50 +00:00
|
|
|
$(MAKE) test CC=clang CPPFLAGS="-g -fsanitize=undefined" FUZZER_TIME="-T1mn" NB_LOOPS=-i1
|
2015-04-09 22:53:55 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
staticAnalyze: clean
|
2015-06-27 21:21:33 +00:00
|
|
|
CPPFLAGS=-g scan-build --status-bugs -v $(MAKE) all
|
2015-03-26 13:16:20 +00:00
|
|
|
|
|
|
|
armtest: clean
|
2015-04-16 12:34:03 +00:00
|
|
|
cd lib; $(MAKE) -e all CC=arm-linux-gnueabi-gcc CPPFLAGS="-Werror"
|
|
|
|
cd programs; $(MAKE) -e bins CC=arm-linux-gnueabi-gcc CPPFLAGS="-Werror"
|
2015-03-26 13:16:20 +00:00
|
|
|
|
2015-05-15 00:27:44 +00:00
|
|
|
versionstest: clean
|
2015-05-21 00:17:56 +00:00
|
|
|
@cd test; $(MAKE)
|
2015-05-15 00:27:44 +00:00
|
|
|
|
2015-06-28 10:34:12 +00:00
|
|
|
examples:
|
2015-05-21 13:17:21 +00:00
|
|
|
cd lib; $(MAKE) -e
|
2015-06-18 03:37:19 +00:00
|
|
|
cd programs; $(MAKE) -e lz4
|
2015-03-26 13:16:20 +00:00
|
|
|
cd examples; $(MAKE) -e test
|
2014-10-28 14:35:43 +00:00
|
|
|
|
2015-03-26 13:16:20 +00:00
|
|
|
prg-travis:
|
|
|
|
@cd $(PRGDIR); $(MAKE) -e test-travis
|
2014-10-28 14:35:43 +00:00
|
|
|
|
2013-09-25 09:00:37 +00:00
|
|
|
endif
|