lz4/Makefile

151 lines
4.2 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.
#
2015-03-26 13:16:20 +00:00
# BSD license
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
2015-03-26 13:16:20 +00:00
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
2015-03-26 13:16:20 +00:00
# * 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.
#
2015-03-26 13:16:20 +00:00
# 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
# ################################################################
2016-11-04 12:32:36 +00:00
DESTDIR ?=
PREFIX ?= /usr/local
VOID := /dev/null
2015-03-26 13:16:20 +00:00
LIBDIR ?= $(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include
PRGDIR = programs
LZ4DIR = lib
2016-11-03 14:03:43 +00:00
TESTDIR = tests
2015-03-26 13:16:20 +00:00
# Define nul output
2015-03-26 10:41:55 +00:00
ifneq (,$(filter Windows%,$(OS)))
2016-09-23 01:43:12 +00:00
EXT = .exe
2014-10-28 14:35:43 +00:00
else
2016-09-23 01:43:12 +00:00
EXT =
2014-10-28 14:35:43 +00:00
endif
2016-08-20 21:49:36 +00:00
.PHONY: default all lib lz4 clean test versionsTest examples
2016-08-20 21:49:36 +00:00
default: lz4
2016-08-20 21:49:36 +00:00
all: lib lz4
lib:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(LZ4DIR) all
2016-08-20 21:49:36 +00:00
lz4:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(PRGDIR)
2016-09-23 01:43:12 +00:00
@cp $(PRGDIR)/lz4$(EXT) .
clean:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)
2016-11-03 14:03:43 +00:00
@$(MAKE) -C $(TESTDIR) $@ > $(VOID)
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(LZ4DIR) $@ > $(VOID)
@$(MAKE) -C examples $@ > $(VOID)
2016-09-23 01:43:12 +00:00
@$(RM) lz4$(EXT)
@echo Cleaning completed
2014-07-20 15:18:48 +00:00
#------------------------------------------------------------------------
#make install is validated only for Linux, OSX, kFreeBSD, Hurd and
#FreeBSD targets
ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU FreeBSD))
2016-11-10 13:43:51 +00:00
HOST_OS = POSIX
2015-03-26 13:16:20 +00:00
install:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(LZ4DIR) $@
@$(MAKE) -C $(PRGDIR) $@
uninstall:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(LZ4DIR) $@
@$(MAKE) -C $(PRGDIR) $@
2015-03-26 13:16:20 +00:00
travis-install:
2016-11-07 16:43:37 +00:00
$(MAKE) install PREFIX=~/install_test_dir
2015-03-26 13:16:20 +00:00
test:
2016-11-03 14:03:43 +00:00
$(MAKE) -C $(TESTDIR) test
2015-03-26 13:16:20 +00:00
clangtest: clean
2016-11-10 09:05:18 +00:00
clang -v
2016-11-08 10:16:16 +00:00
CFLAGS="-O3 -Werror -Wconversion -Wno-sign-conversion" $(MAKE) all CC=clang
2015-03-10 15:57:42 +00:00
2015-04-09 22:53:55 +00:00
sanitize: clean
2016-11-08 10:16:16 +00:00
CFLAGS="-O3 -g -fsanitize=undefined" $(MAKE) test CC=clang FUZZER_TIME="-T1mn" NB_LOOPS=-i1
2015-04-09 22:53:55 +00:00
2015-03-26 13:16:20 +00:00
staticAnalyze: clean
2016-11-08 10:16:16 +00:00
CFLAGS=-g scan-build --status-bugs -v $(MAKE) all
2015-03-26 13:16:20 +00:00
2016-11-08 08:48:01 +00:00
platformTest: clean
2016-11-08 11:33:01 +00:00
@echo "\n ---- test lz4 with $(CC) compiler ----"
@$(CC) -v
2016-11-08 10:16:16 +00:00
CFLAGS="-O3 -Werror" $(MAKE) -C $(LZ4DIR) all
CFLAGS="-O3 -Werror -static" $(MAKE) -C $(PRGDIR) bins
CFLAGS="-O3 -Werror -static" $(MAKE) -C $(TESTDIR) bins
2016-11-08 09:43:18 +00:00
$(MAKE) -C $(TESTDIR) test-platform
2015-03-26 13:16:20 +00:00
2015-06-28 19:42:20 +00:00
versionsTest: clean
2016-11-03 15:17:38 +00:00
$(MAKE) -C $(TESTDIR) $@
2015-06-28 10:34:12 +00:00
examples:
2015-09-01 14:59:24 +00:00
$(MAKE) -C $(LZ4DIR)
$(MAKE) -C $(PRGDIR) lz4
$(MAKE) -C examples test
2014-10-28 14:35:43 +00:00
endif
2016-11-10 13:43:51 +00:00
ifneq (,$(filter MSYS%,$(shell uname)))
HOST_OS = MSYS
CMAKE_PARAMS = -G"MSYS Makefiles"
endif
#------------------------------------------------------------------------
#make tests validated only for MSYS, Linux, OSX, kFreeBSD and Hurd targets
#------------------------------------------------------------------------
ifneq (,$(filter $(HOST_OS),MSYS POSIX))
cmake:
@cd contrib/cmake_unofficial; cmake $(CMAKE_PARAMS) CMakeLists.txt; $(MAKE)
gpptest: clean
CC=g++ $(MAKE) all CFLAGS="-O3 -I../lib -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
2016-11-10 13:43:51 +00:00
c_standards: clean
$(MAKE) all MOREFLAGS="-std=gnu90 -Werror"
2016-11-10 13:43:51 +00:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=c99 -Werror"
2016-11-10 13:43:51 +00:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=gnu99 -Werror"
2016-11-10 13:43:51 +00:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=c11 -Werror"
2016-11-10 13:43:51 +00:00
$(MAKE) clean
endif