188 lines
6.1 KiB
Makefile
188 lines
6.1 KiB
Makefile
# ##########################################################################
|
|
# LZ4 programs - Makefile
|
|
# Copyright (C) Yann Collet 2011-2017
|
|
#
|
|
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
|
|
#
|
|
# GPL v2 License
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# You can contact the author at :
|
|
# - LZ4 homepage : http://www.lz4.org
|
|
# - LZ4 source repository : https://github.com/lz4/lz4
|
|
# ##########################################################################
|
|
# lz4 : Command Line Utility, supporting gzip-like arguments
|
|
# lz4c : CLU, supporting also legacy lz4demo arguments
|
|
# lz4c32: Same as lz4c, but forced to compile in 32-bits mode
|
|
# ##########################################################################
|
|
|
|
# Version numbers
|
|
LZ4DIR := ../lib
|
|
LIBVER_SRC := $(LZ4DIR)/lz4.h
|
|
LIBVER_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
|
|
LIBVER_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
|
|
LIBVER_PATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(LIBVER_SRC)`
|
|
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))
|
|
LIBVER := $(shell echo $(LIBVER_SCRIPT))
|
|
|
|
LIBFILES = $(wildcard $(LZ4DIR)/*.c)
|
|
SRCFILES = $(sort $(LIBFILES) $(wildcard *.c))
|
|
OBJFILES = $(SRCFILES:.c=.o)
|
|
|
|
CPPFLAGS += -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_
|
|
CFLAGS ?= -O3
|
|
DEBUGFLAGS= -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
|
|
-Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
|
|
-Wpointer-arith -Wstrict-aliasing=1
|
|
CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS)
|
|
FLAGS = $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
|
|
|
|
LZ4_VERSION=$(LIBVER)
|
|
MD2ROFF = ronn
|
|
MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="lz4 $(LZ4_VERSION)"
|
|
|
|
include ../Makefile.inc
|
|
|
|
default: lz4-release
|
|
|
|
all: lz4 lz4c
|
|
|
|
all32: CFLAGS+=-m32
|
|
all32: all
|
|
|
|
ifeq ($(WINBASED),yes)
|
|
lz4-exe.rc: lz4-exe.rc.in
|
|
@echo creating executable resource
|
|
$(Q)sed -e 's|@PROGNAME@|lz4|' \
|
|
-e 's|@LIBVER_MAJOR@|$(LIBVER_MAJOR)|g' \
|
|
-e 's|@LIBVER_MINOR@|$(LIBVER_MINOR)|g' \
|
|
-e 's|@LIBVER_PATCH@|$(LIBVER_PATCH)|g' \
|
|
-e 's|@EXT@|$(EXT)|g' \
|
|
$< >$@
|
|
|
|
lz4-exe.o: lz4-exe.rc
|
|
$(WINDRES) -i lz4-exe.rc -o lz4-exe.o
|
|
|
|
lz4: $(OBJFILES) lz4-exe.o
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
|
else
|
|
lz4: $(OBJFILES)
|
|
$(CC) $(FLAGS) $(OBJFILES) -o $@$(EXT) $(LDLIBS)
|
|
endif
|
|
|
|
.PHONY: lz4-release
|
|
lz4-release: DEBUGFLAGS=
|
|
lz4-release: lz4
|
|
|
|
lz4-wlib: LIBFILES =
|
|
lz4-wlib: SRCFILES+= $(LZ4DIR)/xxhash.c # benchmark unit needs XXH64()
|
|
lz4-wlib: LDFLAGS += -L $(LZ4DIR)
|
|
lz4-wlib: LDLIBS = -llz4
|
|
lz4-wlib: liblz4 $(OBJFILES)
|
|
@echo WARNING: $@ must link to an extended variant of the dynamic library which also exposes unstable symbols
|
|
$(CC) $(FLAGS) $(OBJFILES) -o $@$(EXT) $(LDLIBS)
|
|
|
|
.PHONY:liblz4
|
|
liblz4:
|
|
CPPFLAGS="-DLZ4F_PUBLISH_STATIC_FUNCTIONS -DLZ4_PUBLISH_STATIC_FUNCTIONS" $(MAKE) -C $(LZ4DIR) liblz4
|
|
|
|
lz4c: lz4
|
|
$(LN_SF) lz4$(EXT) lz4c$(EXT)
|
|
|
|
lz4c32: CFLAGS += -m32
|
|
lz4c32 : $(SRCFILES)
|
|
$(CC) $(FLAGS) $^ -o $@$(EXT)
|
|
|
|
lz4.1: lz4.1.md $(LIBVER_SRC)
|
|
cat $< | $(MD2ROFF) $(MD2ROFF_FLAGS) | sed -n '/^\.\\\".*/!p' > $@
|
|
|
|
man: lz4.1
|
|
|
|
clean-man:
|
|
$(RM) lz4.1
|
|
|
|
preview-man: clean-man man
|
|
man ./lz4.1
|
|
|
|
clean:
|
|
ifeq ($(WINBASED),yes)
|
|
$(Q)$(RM) *.rc
|
|
endif
|
|
@$(MAKE) -C $(LZ4DIR) $@ > $(VOID)
|
|
@$(RM) core *.o *.test tmp* \
|
|
lz4$(EXT) lz4c$(EXT) lz4c32$(EXT) lz4-wlib$(EXT) \
|
|
unlz4$(EXT) lz4cat$(EXT)
|
|
@echo Cleaning completed
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# make install is validated only for Linux, OSX, BSD, Hurd and Solaris targets
|
|
#-----------------------------------------------------------------------------
|
|
ifeq ($(POSIX_ENV),Yes)
|
|
|
|
unlz4: lz4
|
|
$(LN_SF) lz4$(EXT) unlz4$(EXT)
|
|
|
|
lz4cat: lz4
|
|
$(LN_SF) lz4$(EXT) lz4cat$(EXT)
|
|
|
|
DESTDIR ?=
|
|
# directory variables : GNU conventions prefer lowercase
|
|
# see https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html
|
|
# support both lower and uppercase (BSD), use lowercase in script
|
|
PREFIX ?= /usr/local
|
|
prefix ?= $(PREFIX)
|
|
EXEC_PREFIX ?= $(prefix)
|
|
exec_prefix ?= $(EXEC_PREFIX)
|
|
BINDIR ?= $(exec_prefix)/bin
|
|
bindir ?= $(BINDIR)
|
|
DATAROOTDIR ?= $(prefix)/share
|
|
datarootdir ?= $(DATAROOTDIR)
|
|
MANDIR ?= $(datarootdir)/man
|
|
mandir ?= $(MANDIR)
|
|
MAN1DIR ?= $(mandir)/man1
|
|
man1dir ?= $(MAN1DIR)
|
|
|
|
install: lz4
|
|
@echo Installing binaries
|
|
@$(INSTALL_DIR) $(DESTDIR)$(bindir)/ $(DESTDIR)$(man1dir)/
|
|
@$(INSTALL_PROGRAM) lz4$(EXT) $(DESTDIR)$(bindir)/lz4$(EXT)
|
|
@$(LN_S) lz4$(EXT) $(DESTDIR)$(bindir)/lz4c$(EXT)
|
|
@$(LN_S) lz4$(EXT) $(DESTDIR)$(bindir)/lz4cat$(EXT)
|
|
@$(LN_S) lz4$(EXT) $(DESTDIR)$(bindir)/unlz4$(EXT)
|
|
@echo Installing man pages
|
|
@$(INSTALL_DATA) lz4.1 $(DESTDIR)$(man1dir)/lz4.1
|
|
@$(LN_SF) lz4.1 $(DESTDIR)$(man1dir)/lz4c.1
|
|
@$(LN_SF) lz4.1 $(DESTDIR)$(man1dir)/lz4cat.1
|
|
@$(LN_SF) lz4.1 $(DESTDIR)$(man1dir)/unlz4.1
|
|
@echo lz4 installation completed
|
|
|
|
uninstall:
|
|
@$(RM) $(DESTDIR)$(bindir)/lz4cat$(EXT)
|
|
@$(RM) $(DESTDIR)$(bindir)/unlz4$(EXT)
|
|
@$(RM) $(DESTDIR)$(bindir)/lz4$(EXT)
|
|
@$(RM) $(DESTDIR)$(bindir)/lz4c$(EXT)
|
|
@$(RM) $(DESTDIR)$(man1dir)/lz4.1
|
|
@$(RM) $(DESTDIR)$(man1dir)/lz4c.1
|
|
@$(RM) $(DESTDIR)$(man1dir)/lz4cat.1
|
|
@$(RM) $(DESTDIR)$(man1dir)/unlz4.1
|
|
@echo lz4 programs successfully uninstalled
|
|
|
|
endif
|