2014-11-30 22:32:12 +00:00
# ################################################################
# LZ4 library - Makefile
2016-11-21 23:51:39 +00:00
# Copyright (C) Yann Collet 2011-2016
2014-11-30 22:32:12 +00:00
# All rights reserved.
2016-02-12 22:34:07 +00:00
#
2017-01-19 15:28:08 +00:00
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
#
2014-11-30 22:32:12 +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:
2016-02-12 22:34:07 +00:00
#
2014-11-30 22:32:12 +00:00
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
2016-02-12 22:34:07 +00:00
#
2014-11-30 22:32:12 +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.
2016-02-12 22:34:07 +00:00
#
2014-11-30 22:32:12 +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.
2016-02-12 22:34:07 +00:00
#
2014-11-30 22:32:12 +00:00
# You can contact the author at :
2020-11-15 09:31:09 +00:00
# - LZ4 source repository : https://github.com/lz4/lz4
2014-11-30 22:32:12 +00:00
# - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
# ################################################################
# Version numbers
2016-09-03 05:04:16 +00:00
LIBVER_MAJOR_SCRIPT := ` sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
LIBVER_MINOR_SCRIPT := ` sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
LIBVER_PATCH_SCRIPT := ` sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
LIBVER_SCRIPT := $( LIBVER_MAJOR_SCRIPT) .$( LIBVER_MINOR_SCRIPT) .$( LIBVER_PATCH_SCRIPT)
LIBVER_MAJOR := $( shell echo $( LIBVER_MAJOR_SCRIPT) )
LIBVER_MINOR := $( shell echo $( LIBVER_MINOR_SCRIPT) )
LIBVER_PATCH := $( shell echo $( LIBVER_PATCH_SCRIPT) )
2016-11-22 19:52:43 +00:00
LIBVER := $( shell echo $( LIBVER_SCRIPT) )
2016-09-03 05:04:16 +00:00
2018-04-19 09:28:11 +00:00
BUILD_SHARED := yes
2017-08-01 04:48:58 +00:00
BUILD_STATIC := yes
2014-11-30 22:32:12 +00:00
2016-11-22 19:52:43 +00:00
CPPFLAGS += -DXXH_NAMESPACE= LZ4_
CFLAGS ?= -O3
2017-05-10 20:26:04 +00:00
DEBUGFLAGS := -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
2017-08-26 19:22:51 +00:00
-Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
-Wundef -Wpointer-arith -Wstrict-aliasing= 1
2017-05-10 20:26:04 +00:00
CFLAGS += $( DEBUGFLAGS) $( MOREFLAGS)
2016-11-22 19:52:43 +00:00
FLAGS = $( CPPFLAGS) $( CFLAGS) $( LDFLAGS)
2014-11-30 22:32:12 +00:00
2017-08-26 19:22:51 +00:00
SRCFILES := $( sort $( wildcard *.c) )
2014-11-30 22:32:12 +00:00
2019-04-23 19:13:19 +00:00
i n c l u d e . . / M a k e f i l e . i n c
2014-11-30 22:32:12 +00:00
# OS X linker doesn't support -soname, and use different extension
# see : https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html
2019-04-23 19:13:19 +00:00
i f e q ( $( TARGET_OS ) , D a r w i n )
2014-11-30 22:32:12 +00:00
SHARED_EXT = dylib
SHARED_EXT_MAJOR = $( LIBVER_MAJOR) .$( SHARED_EXT)
SHARED_EXT_VER = $( LIBVER) .$( SHARED_EXT)
2018-05-04 20:35:10 +00:00
SONAME_FLAGS = -install_name $( libdir) /liblz4.$( SHARED_EXT_MAJOR) -compatibility_version $( LIBVER_MAJOR) -current_version $( LIBVER)
2014-11-30 22:32:12 +00:00
e l s e
SONAME_FLAGS = -Wl,-soname= liblz4.$( SHARED_EXT) .$( LIBVER_MAJOR)
SHARED_EXT = so
SHARED_EXT_MAJOR = $( SHARED_EXT) .$( LIBVER_MAJOR)
SHARED_EXT_VER = $( SHARED_EXT) .$( LIBVER)
e n d i f
2017-05-10 20:26:04 +00:00
.PHONY : default
2016-11-17 21:02:06 +00:00
default : lib -release
2014-11-30 22:32:12 +00:00
2017-05-10 20:26:04 +00:00
lib-release : DEBUGFLAGS :=
lib-release : lib
2016-11-22 19:52:43 +00:00
2017-05-10 20:26:04 +00:00
lib : liblz 4.a liblz 4
2016-11-22 19:52:43 +00:00
2016-11-09 15:23:08 +00:00
all : lib
2016-11-17 21:02:06 +00:00
all32 : CFLAGS +=-m 32
all32 : all
2017-08-29 22:31:56 +00:00
liblz4.a : $( SRCFILES )
2017-05-10 20:26:04 +00:00
i f e q ( $( BUILD_STATIC ) , y e s ) # can be disabled on command line
2014-11-30 22:32:12 +00:00
@echo compiling static library
2018-04-28 04:16:46 +00:00
$( Q) $( CC) $( CPPFLAGS) $( CFLAGS) -c $^
$( Q) $( AR) rcs $@ *.o
2016-09-23 03:59:02 +00:00
e n d i f
2016-11-09 14:19:29 +00:00
2019-04-23 11:44:00 +00:00
i f e q ( $( WINBASED ) , y e s )
liblz4-dll.rc : liblz 4-dll .rc .in
@echo creating library resource
$( Q) sed -e 's|@LIBLZ4@|$(LIBLZ4)|' \
-e 's|@LIBVER_MAJOR@|$(LIBVER_MAJOR)|g' \
-e 's|@LIBVER_MINOR@|$(LIBVER_MINOR)|g' \
-e 's|@LIBVER_PATCH@|$(LIBVER_PATCH)|g' \
$< >$@
liblz4-dll.o : liblz 4-dll .rc
$( WINDRES) -i liblz4-dll.rc -o liblz4-dll.o
$(LIBLZ4) : $( SRCFILES ) liblz 4-dll .o
e l s e
2017-08-29 22:31:56 +00:00
$(LIBLZ4) : $( SRCFILES )
2019-04-23 11:44:00 +00:00
e n d i f
2018-04-19 09:28:11 +00:00
i f e q ( $( BUILD_SHARED ) , y e s ) # can be disabled on command line
2014-11-30 22:32:12 +00:00
@echo compiling dynamic library $( LIBVER)
2019-04-23 11:44:00 +00:00
ifeq ( $( WINBASED) ,yes)
2019-04-22 17:48:59 +00:00
$( Q) $( CC) $( FLAGS) -DLZ4_DLL_EXPORT= 1 -shared $^ -o dll/$@ .dll -Wl,--out-implib,dll/$( LIBLZ4_EXP)
2019-04-23 11:44:00 +00:00
else
2018-04-28 04:16:46 +00:00
$( Q) $( CC) $( FLAGS) -shared $^ -fPIC -fvisibility= hidden $( SONAME_FLAGS) -o $@
2014-11-30 22:32:12 +00:00
@echo creating versioned links
2019-04-23 11:44:00 +00:00
$( Q) $( LN_SF) $@ liblz4.$( SHARED_EXT_MAJOR)
$( Q) $( LN_SF) $@ liblz4.$( SHARED_EXT)
endif
2018-04-19 09:28:11 +00:00
e n d i f
2014-11-30 22:32:12 +00:00
2019-04-22 17:48:59 +00:00
i f e q ( , $( filter MINGW %,$ ( TARGET_OS ) ) )
2016-12-21 12:18:02 +00:00
liblz4 : $( LIBLZ 4)
2019-04-22 17:48:59 +00:00
e n d i f
2016-12-21 12:18:02 +00:00
2014-11-30 22:32:12 +00:00
clean :
2019-04-23 11:44:00 +00:00
i f e q ( $( WINBASED ) , y e s )
$( Q) $( RM) *.rc
e n d i f
2019-04-22 17:48:59 +00:00
$( Q) $( RM) core *.o liblz4.pc dll/$( LIBLZ4) .dll dll/$( LIBLZ4_EXP)
2018-04-28 04:16:46 +00:00
$( Q) $( RM) *.a *.$( SHARED_EXT) *.$( SHARED_EXT_MAJOR) *.$( SHARED_EXT_VER)
2014-11-30 22:32:12 +00:00
@echo Cleaning library completed
2016-12-22 23:02:01 +00:00
#-----------------------------------------------------------------------------
# make install is validated only for Linux, OSX, BSD, Hurd and Solaris targets
#-----------------------------------------------------------------------------
2019-04-22 20:06:04 +00:00
i f e q ( $( POSIX_ENV ) , Y e s )
2016-12-22 23:02:01 +00:00
2018-04-18 23:49:27 +00:00
.PHONY : listL 120
listL120 : # extract lines >= 120 characters in *.{c,h}, by Takayuki Matsuoka (note : $$, for Makefile compatibility)
find . -type f -name '*.c' -o -name '*.h' | while read -r filename; do awk 'length > 120 {print FILENAME "(" FNR "): " $$0}' $$ filename; done
2017-08-14 22:13:23 +00:00
DESTDIR ?=
2017-09-07 00:41:44 +00:00
# directory variables : GNU conventions prefer lowercase
# see https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html
2018-05-04 20:35:10 +00:00
# support both lower and uppercase (BSD), use lower in script
PREFIX ?= /usr/local
prefix ?= $( PREFIX)
EXEC_PREFIX ?= $( prefix)
exec_prefix ?= $( EXEC_PREFIX)
2018-11-20 20:08:23 +00:00
BINDIR ?= $( exec_prefix) /bin
bindir ?= $( BINDIR)
2018-05-04 20:35:10 +00:00
LIBDIR ?= $( exec_prefix) /lib
libdir ?= $( LIBDIR)
INCLUDEDIR ?= $( prefix) /include
includedir ?= $( INCLUDEDIR)
2016-12-22 23:02:01 +00:00
2019-04-23 11:44:00 +00:00
ifneq ( ,$( filter $( TARGET_OS) ,OpenBSD FreeBSD NetBSD DragonFly MidnightBSD) )
2018-05-04 20:35:10 +00:00
PKGCONFIGDIR ?= $( prefix) /libdata/pkgconfig
2019-04-23 11:44:00 +00:00
else
2018-05-04 20:35:10 +00:00
PKGCONFIGDIR ?= $( libdir) /pkgconfig
2019-04-23 11:44:00 +00:00
endif
2018-05-04 20:35:10 +00:00
pkgconfigdir ?= $( PKGCONFIGDIR)
2016-12-22 23:02:01 +00:00
2014-11-30 22:32:12 +00:00
liblz4.pc : liblz 4.pc .in Makefile
@echo creating pkgconfig
2018-05-04 20:35:10 +00:00
$( Q) sed -e 's|@PREFIX@|$(prefix)|' \
-e 's|@LIBDIR@|$(libdir)|' \
-e 's|@INCLUDEDIR@|$(includedir)|' \
2016-11-22 19:52:43 +00:00
-e 's|@VERSION@|$(LIBVER)|' \
$< >$@
2014-11-30 22:32:12 +00:00
2016-11-09 15:23:08 +00:00
install : lib liblz 4.pc
2019-04-23 11:44:00 +00:00
$( Q) $( INSTALL_DIR) $( DESTDIR) $( pkgconfigdir) / $( DESTDIR) $( includedir) / $( DESTDIR) $( libdir) / $( DESTDIR) $( bindir) /
2018-05-04 20:35:10 +00:00
$( Q) $( INSTALL_DATA) liblz4.pc $( DESTDIR) $( pkgconfigdir) /
2016-12-22 23:02:01 +00:00
@echo Installing libraries
2019-04-23 11:44:00 +00:00
ifeq ( $( BUILD_STATIC) ,yes)
2018-05-04 20:35:10 +00:00
$( Q) $( INSTALL_DATA) liblz4.a $( DESTDIR) $( libdir) /liblz4.a
$( Q) $( INSTALL_DATA) lz4frame_static.h $( DESTDIR) $( includedir) /lz4frame_static.h
2019-04-23 11:44:00 +00:00
endif
ifeq ( $( BUILD_SHARED) ,yes)
2018-11-21 07:40:51 +00:00
# Traditionnally, one installs the DLLs in the bin directory as programs
# search them first in their directory. This allows to not pollute system
# directories (like c:/windows/system32), nor modify the PATH variable.
2019-04-23 11:44:00 +00:00
ifeq ( $( WINBASED) ,yes)
2018-11-20 20:08:23 +00:00
$( Q) $( INSTALL_PROGRAM) dll/$( LIBLZ4) .dll $( DESTDIR) $( bindir)
2019-04-22 17:48:59 +00:00
$( Q) $( INSTALL_PROGRAM) dll/$( LIBLZ4_EXP) $( DESTDIR) $( libdir)
2019-04-23 11:44:00 +00:00
else
2018-05-04 20:35:10 +00:00
$( Q) $( INSTALL_PROGRAM) liblz4.$( SHARED_EXT_VER) $( DESTDIR) $( libdir)
2019-04-23 11:44:00 +00:00
$( Q) $( LN_SF) liblz4.$( SHARED_EXT_VER) $( DESTDIR) $( libdir) /liblz4.$( SHARED_EXT_MAJOR)
$( Q) $( LN_SF) liblz4.$( SHARED_EXT_VER) $( DESTDIR) $( libdir) /liblz4.$( SHARED_EXT)
endif
endif
2018-05-04 20:35:10 +00:00
@echo Installing headers in $( includedir)
$( Q) $( INSTALL_DATA) lz4.h $( DESTDIR) $( includedir) /lz4.h
$( Q) $( INSTALL_DATA) lz4hc.h $( DESTDIR) $( includedir) /lz4hc.h
$( Q) $( INSTALL_DATA) lz4frame.h $( DESTDIR) $( includedir) /lz4frame.h
2017-08-14 22:13:23 +00:00
@echo lz4 libraries installed
2014-11-30 22:32:12 +00:00
uninstall :
2018-05-04 20:35:10 +00:00
$( Q) $( RM) $( DESTDIR) $( pkgconfigdir) /liblz4.pc
2019-04-23 11:44:00 +00:00
ifeq ( WINBASED,1)
2018-11-21 08:07:26 +00:00
$( Q) $( RM) $( DESTDIR) $( bindir) /$( LIBLZ4) .dll
2019-04-22 17:48:59 +00:00
$( Q) $( RM) $( DESTDIR) $( libdir) /$( LIBLZ4_EXP)
2019-04-23 11:44:00 +00:00
else
2018-05-04 20:35:10 +00:00
$( Q) $( RM) $( DESTDIR) $( libdir) /liblz4.$( SHARED_EXT)
$( Q) $( RM) $( DESTDIR) $( libdir) /liblz4.$( SHARED_EXT_MAJOR)
$( Q) $( RM) $( DESTDIR) $( libdir) /liblz4.$( SHARED_EXT_VER)
2019-04-23 11:44:00 +00:00
endif
2018-05-04 20:35:10 +00:00
$( Q) $( RM) $( DESTDIR) $( libdir) /liblz4.a
$( Q) $( RM) $( DESTDIR) $( includedir) /lz4.h
$( Q) $( RM) $( DESTDIR) $( includedir) /lz4hc.h
$( Q) $( RM) $( DESTDIR) $( includedir) /lz4frame.h
$( Q) $( RM) $( DESTDIR) $( includedir) /lz4frame_static.h
2014-11-30 22:32:12 +00:00
@echo lz4 libraries successfully uninstalled
e n d i f