lz4/Makefile

133 lines
3.7 KiB
Makefile
Raw Normal View History

2015-03-26 13:16:20 +00:00
# ################################################################
# LZ4 - Makefile
# 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.
#
# You can contact the author at :
# - 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)
DESTDIR?=
PREFIX ?= /usr/local
2015-03-26 13:16:20 +00:00
LIBDIR ?= $(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include
PRGDIR = programs
LZ4DIR = lib
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
.PHONY: default all lib lz4programs clean test
2015-03-26 13:16:20 +00:00
default: lz4programs
all: lib
2015-03-26 13:16:20 +00:00
@cd $(PRGDIR); $(MAKE) -e all
lib:
@cd $(LZ4DIR); $(MAKE) -e all
2015-03-26 13:16:20 +00:00
lz4programs:
@cd $(PRGDIR); $(MAKE) -e
clean:
2015-03-26 13:16:20 +00:00
@cd $(PRGDIR); $(MAKE) clean > $(VOID)
@cd $(LZ4DIR); $(MAKE) clean > $(VOID)
@cd examples; $(MAKE) clean > $(VOID)
@cd test; $(MAKE) clean > $(VOID)
@echo Cleaning completed
2014-07-20 15:18:48 +00:00
#------------------------------------------------------------------------
#make install is validated only for Linux, OSX, kFreeBSD and Hurd targets
ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
2015-03-26 13:16:20 +00:00
install:
@cd $(LZ4DIR); $(MAKE) -e install
@cd $(PRGDIR); $(MAKE) -e install
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)
2015-03-26 13:16:20 +00:00
cmake:
@cd cmake_unofficial; cmake CMakeLists.txt; $(MAKE)
2015-03-15 13:19:47 +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-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
$(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
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
versionstest: clean
@cd test; $(MAKE)
2015-06-28 10:34:12 +00:00
examples:
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
endif