lz4/Makefile

151 lines
4.2 KiB
Makefile
Raw Normal View History

2015-03-26 21:16:20 +08:00
# ################################################################
# LZ4 - Makefile
# Copyright (C) Yann Collet 2011-2015
2015-03-26 21:16:20 +08:00
# All rights reserved.
#
2015-03-26 21:16:20 +08: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 21:16:20 +08:00
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
2015-03-26 21:16:20 +08: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 21:16:20 +08: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 21:16:20 +08:00
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
# ################################################################
2016-11-04 20:32:36 +08:00
DESTDIR ?=
PREFIX ?= /usr/local
VOID := /dev/null
2015-03-26 21:16:20 +08:00
LIBDIR ?= $(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include
PRGDIR = programs
LZ4DIR = lib
2016-11-03 22:03:43 +08:00
TESTDIR = tests
2015-03-26 21:16:20 +08:00
# Define nul output
2015-03-26 18:41:55 +08:00
ifneq (,$(filter Windows%,$(OS)))
2016-09-23 09:43:12 +08:00
EXT = .exe
2014-10-28 22:35:43 +08:00
else
2016-09-23 09:43:12 +08:00
EXT =
2014-10-28 22:35:43 +08:00
endif
2016-08-21 05:49:36 +08:00
.PHONY: default all lib lz4 clean test versionsTest examples
2016-08-21 05:49:36 +08:00
default: lz4
2016-08-21 05:49:36 +08:00
all: lib lz4
lib:
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(LZ4DIR) all
2016-08-21 05:49:36 +08:00
lz4:
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(PRGDIR)
2016-09-23 09:43:12 +08:00
@cp $(PRGDIR)/lz4$(EXT) .
clean:
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)
2016-11-03 22:03:43 +08:00
@$(MAKE) -C $(TESTDIR) $@ > $(VOID)
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(LZ4DIR) $@ > $(VOID)
@$(MAKE) -C examples $@ > $(VOID)
2016-09-23 09:43:12 +08:00
@$(RM) lz4$(EXT)
@echo Cleaning completed
2014-07-20 23:18:48 +08: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 21:43:51 +08:00
HOST_OS = POSIX
2015-03-26 21:16:20 +08:00
install:
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(LZ4DIR) $@
@$(MAKE) -C $(PRGDIR) $@
uninstall:
2015-09-01 22:59:24 +08:00
@$(MAKE) -C $(LZ4DIR) $@
@$(MAKE) -C $(PRGDIR) $@
2015-03-26 21:16:20 +08:00
travis-install:
2016-11-08 00:43:37 +08:00
$(MAKE) install PREFIX=~/install_test_dir
2015-03-26 21:16:20 +08:00
test:
2016-11-03 22:03:43 +08:00
$(MAKE) -C $(TESTDIR) test
2015-03-26 21:16:20 +08:00
clangtest: clean
2016-11-10 17:05:18 +08:00
clang -v
2016-11-08 18:16:16 +08:00
CFLAGS="-O3 -Werror -Wconversion -Wno-sign-conversion" $(MAKE) all CC=clang
2015-03-10 23:57:42 +08:00
2015-04-10 06:53:55 +08:00
sanitize: clean
2016-11-08 18:16:16 +08:00
CFLAGS="-O3 -g -fsanitize=undefined" $(MAKE) test CC=clang FUZZER_TIME="-T1mn" NB_LOOPS=-i1
2015-04-10 06:53:55 +08:00
2015-03-26 21:16:20 +08:00
staticAnalyze: clean
2016-11-08 18:16:16 +08:00
CFLAGS=-g scan-build --status-bugs -v $(MAKE) all
2015-03-26 21:16:20 +08:00
2016-11-08 16:48:01 +08:00
platformTest: clean
2016-11-08 19:33:01 +08:00
@echo "\n ---- test lz4 with $(CC) compiler ----"
@$(CC) -v
2016-11-08 18:16:16 +08: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 17:43:18 +08:00
$(MAKE) -C $(TESTDIR) test-platform
2015-03-26 21:16:20 +08:00
2015-06-29 03:42:20 +08:00
versionsTest: clean
2016-11-03 23:17:38 +08:00
$(MAKE) -C $(TESTDIR) $@
2015-06-28 18:34:12 +08:00
examples:
2015-09-01 22:59:24 +08:00
$(MAKE) -C $(LZ4DIR)
$(MAKE) -C $(PRGDIR) lz4
$(MAKE) -C examples test
2014-10-28 22:35:43 +08:00
endif
2016-11-10 21:43:51 +08: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 21:43:51 +08:00
c_standards: clean
$(MAKE) all MOREFLAGS="-std=gnu90 -Werror"
2016-11-10 21:43:51 +08:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=c99 -Werror"
2016-11-10 21:43:51 +08:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=gnu99 -Werror"
2016-11-10 21:43:51 +08:00
$(MAKE) clean
$(MAKE) all MOREFLAGS="-std=c11 -Werror"
2016-11-10 21:43:51 +08:00
$(MAKE) clean
endif