lz4/Makefile

119 lines
3.3 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
# ################################################################
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
# 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
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-08-20 21:49:36 +00:00
@cp $(PRGDIR)/lz4 .
clean:
2015-09-01 14:59:24 +00:00
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)
@$(MAKE) -C $(LZ4DIR) $@ > $(VOID)
@$(MAKE) -C examples $@ > $(VOID)
@$(MAKE) -C versionsTest $@ > $(VOID)
2016-08-20 21:26:33 +00:00
@$(RM) lz4
@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))
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:
sudo $(MAKE) install
test:
2015-09-01 14:59:24 +00:00
$(MAKE) -C $(PRGDIR) test
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
$(MAKE) all CC=g++ CFLAGS="-O3 -I../lib -Wall -Wextra -Wundef -Wshadow -Wcast-align -Werror"
2015-03-26 13:16:20 +00:00
clangtest: clean
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
2015-08-15 17:18:01 +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
CFLAGS=-g scan-build --status-bugs -v $(MAKE) all
2015-03-26 13:16:20 +00:00
armtest: clean
2015-09-01 14:59:24 +00:00
CFLAGS="-O3 -Werror" $(MAKE) -C $(LZ4DIR) all CC=arm-linux-gnueabi-gcc
CFLAGS="-O3 -Werror" $(MAKE) -C $(PRGDIR) bins CC=arm-linux-gnueabi-gcc
2015-03-26 13:16:20 +00:00
2015-06-28 19:42:20 +00:00
versionsTest: clean
2015-09-01 14:59:24 +00:00
$(MAKE) -C versionsTest
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