2018-05-14 14:16:43 +03:00
# @configure_input@
#
# Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
# Copyright (C) 2004-2014 Red Hat, Inc. All rights reserved.
#
# This file is part of LVM2.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# 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
2022-09-05 16:56:58 +03:00
V ?= $(if ("@SILENT_RULES@","yes"),,1)
Q := $(if $(V),,@)
SHOW := $(if $(V),@true,@echo)
2018-05-14 14:16:43 +03:00
SHELL = @SHELL@
@SET_MAKE@
# Allow environment to override any built-in default value for CC.
# If there is a built-in default, CC is NOT set to @CC@ here.
CC ?= @CC@
# If $(CC) holds the usual built-in default value of 'cc' then replace it with
# the configured value.
# (To avoid this and force the use of 'cc' from the environment, supply its
# full path.)
ifeq ($(CC), cc)
CC = @CC@
endif
RANLIB = @RANLIB@
2022-11-19 19:51:08 +03:00
READELF = @READELF@
2018-05-14 14:16:43 +03:00
INSTALL = @INSTALL@
MKDIR_P = @MKDIR_P@
MSGFMT = @MSGFMT@
LCOV = @LCOV@
GENHTML = @GENHTML@
LN_S = @LN_S@
SED = @SED@
CFLOW_CMD = @CFLOW_CMD@
AWK = @AWK@
CHMOD = @CHMOD@
EGREP = @EGREP@
GREP = @GREP@
SORT = @SORT@
WC = @WC@
AR = @AR@
RM = rm -f
2021-04-08 20:44:53 +03:00
LIBS += @LIBS@ $(PTHREAD_LIBS) $(SELINUX_LIBS) $(UDEV_LIBS) $(RT_LIBS) $(M_LIBS)
2018-05-14 14:16:43 +03:00
# Extra libraries always linked with static binaries
2021-05-09 12:00:22 +03:00
STATIC_LIBS = $(PTHREAD_LIBS) $(SELINUX_STATIC_LIBS) $(UDEV_STATIC_LIBS) $(BLKID_STATIC_LIBS) $(RT_LIBS) $(M_LIBS)
2018-05-14 14:16:43 +03:00
DEFS += @DEFS@
# FIXME set this only where it's needed, not globally?
CFLAGS ?= @COPTIMISE_FLAG@ @CFLAGS@
LDFLAGS ?= @LDFLAGS@
2023-02-22 16:41:08 +03:00
STATIC_LDFLAGS += @STATIC_LDFLAGS@
2023-02-12 15:12:23 +03:00
CPPFLAGS ?= @CPPFLAGS@
2018-05-14 14:16:43 +03:00
CLDFLAGS += @CLDFLAGS@
ELDFLAGS += @ELDFLAGS@
LDDEPS += @LDDEPS@
LIB_SUFFIX = @LIB_SUFFIX@
DL_LIBS = @DL_LIBS@
RT_LIBS = @RT_LIBS@
M_LIBS = @M_LIBS@
PTHREAD_LIBS = @PTHREAD_LIBS@
READLINE_LIBS = @READLINE_LIBS@
2020-09-26 22:32:55 +03:00
EDITLINE_LIBS = @EDITLINE_LIBS@
2018-05-14 14:16:43 +03:00
SELINUX_LIBS = @SELINUX_LIBS@
2021-05-09 12:00:22 +03:00
SELINUX_STATIC_LIBS = @SELINUX_STATIC_LIBS@
2018-05-14 14:16:43 +03:00
UDEV_CFLAGS = @UDEV_CFLAGS@
UDEV_LIBS = @UDEV_LIBS@
2021-05-09 12:00:22 +03:00
UDEV_STATIC_LIBS = @UDEV_STATIC_LIBS@
2018-05-14 14:16:43 +03:00
BLKID_CFLAGS = @BLKID_CFLAGS@
BLKID_LIBS = @BLKID_LIBS@
2021-05-09 12:00:22 +03:00
BLKID_STATIC_LIBS = @BLKID_STATIC_LIBS@
2023-02-17 01:34:25 +03:00
LIBSYSTEMD_LIBS = @LIBSYSTEMD_LIBS@
2018-05-14 14:16:43 +03:00
VALGRIND_CFLAGS = @VALGRIND_CFLAGS@
# Setup directory variables
prefix = @prefix@
exec_prefix = @exec_prefix@
udev_prefix = @udev_prefix@
sysconfdir = @sysconfdir@
rootdir = $(DESTDIR)/
bindir = $(DESTDIR)@bindir@
confdir = $(DESTDIR)@CONFDIR@/lvm
profiledir = $(confdir)/@DEFAULT_PROFILE_SUBDIR@
includedir = $(DESTDIR)@includedir@
libdir = $(DESTDIR)@libdir@
libexecdir = $(DESTDIR)@libexecdir@
usrlibdir = $(DESTDIR)@usrlibdir@
sbindir = $(DESTDIR)@sbindir@
usrsbindir = $(DESTDIR)@usrsbindir@
datarootdir = @datarootdir@
datadir = $(DESTDIR)@datadir@
infodir = $(DESTDIR)@infodir@
mandir = $(DESTDIR)@mandir@
localedir = $(DESTDIR)@localedir@
staticdir = $(DESTDIR)@STATICDIR@
udevdir = $(DESTDIR)@udevdir@
pkgconfigdir = $(usrlibdir)/pkgconfig
initdir = $(DESTDIR)$(sysconfdir)/rc.d/init.d
dbusconfdir = $(DESTDIR)$(sysconfdir)/dbus-1/system.d
dbusservicedir = $(datadir)/dbus-1/system-services
systemd_unit_dir = $(DESTDIR)@systemdsystemunitdir@
systemd_generator_dir = $(DESTDIR)$(SYSTEMD_GENERATOR_DIR)
systemd_dir = $(DESTDIR)@systemdutildir@
tmpfiles_dir = $(DESTDIR)@tmpfilesdir@
ocf_scriptdir = $(DESTDIR)@OCFDIR@
pythonprefix = $(DESTDIR)$(prefix)
# N.B. No $(DESTDIR) prefix here.
python2dir = @PYTHON2DIR@
python3dir = @PYTHON3DIR@
USRLIB_RELPATH = $(shell echo $(abspath $(usrlibdir) $(libdir)) | \
$(AWK) -f $(top_srcdir)/scripts/relpath.awk)
SYSTEMD_GENERATOR_DIR = @systemdutildir@/system-generators
DEFAULT_SYS_DIR = @DEFAULT_SYS_DIR@
DEFAULT_ARCHIVE_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_ARCHIVE_SUBDIR@
DEFAULT_BACKUP_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_BACKUP_SUBDIR@
DEFAULT_CACHE_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_CACHE_SUBDIR@
DEFAULT_PROFILE_DIR = $(DEFAULT_SYS_DIR)/@DEFAULT_PROFILE_SUBDIR@
DEFAULT_LOCK_DIR = @DEFAULT_LOCK_DIR@
DEFAULT_RUN_DIR = @DEFAULT_RUN_DIR@
DEFAULT_PID_DIR = @DEFAULT_PID_DIR@
DEFAULT_MANGLING = @MANGLING@
2022-09-05 16:56:58 +03:00
#----------------------------------------------------------------------
# From http://blog.melski.net/tag/debugging-makefiles/
#
# Usage: make print-CC print-CXX print-LD
#----------------------------------------------------------------------
print-%:
@echo '$*=$($*)'
@echo ' origin = $(origin $*)'
@echo ' flavor = $(flavor $*)'
@echo ' value = $(value $*)'
2018-05-14 14:16:43 +03:00
# Setup vpath search paths for some suffixes
vpath %.c $(srcdir)
vpath %.cpp $(srcdir)
vpath %.in $(srcdir)
vpath %.po $(srcdir)
vpath %.exported_symbols $(srcdir)
interface = @interface@
interfacebuilddir = $(top_builddir)/libdm/$(interface)
rpmbuilddir = $(abs_top_builddir)/build
# The number of jobs to run, if blank, defaults to the make standard
ifndef MAKEFLAGS
MAKEFLAGS = @JOBS@
endif
2022-09-05 16:56:58 +03:00
ifneq (1, $(firstword $(V)))
MAKEFLAGS += --no-print-directory
endif
2018-05-14 14:16:43 +03:00
# Handle installation of files
ifeq ("@WRITE_INSTALL@", "yes")
# leaving defaults
M_INSTALL_SCRIPT =
M_INSTALL_DATA = -m 644
else
M_INSTALL_PROGRAM = -m 555
M_INSTALL_DATA = -m 444
endif
INSTALL_PROGRAM = $(INSTALL) $(M_INSTALL_PROGRAM) $(STRIP)
INSTALL_DATA = $(INSTALL) -p $(M_INSTALL_DATA)
INSTALL_WDATA = $(INSTALL) -p -m 644
INSTALL_DIR = $(INSTALL) -m 755 -d
INSTALL_ROOT_DIR = $(INSTALL) -m 700 -d
INSTALL_ROOT_DATA = $(INSTALL) -m 600
INSTALL_SCRIPT = $(INSTALL) -p $(M_INSTALL_PROGRAM)
.SUFFIXES:
.SUFFIXES: .c .cpp .d .o .so .a .po .pot .mo .dylib
ifeq ("$(notdir $(CC))", "gcc")
WFLAGS +=\
-Wall\
-Wcast-align\
-Wfloat-equal\
-Wformat-security\
-Winline\
-Wmissing-format-attribute\
-Wmissing-include-dirs\
-Wmissing-noreturn\
-Wpointer-arith\
-Wredundant-decls\
-Wshadow\
-Wundef\
-Wwrite-strings
WCFLAGS +=\
-Wmissing-declarations\
-Wmissing-prototypes\
-Wnested-externs\
-Wold-style-definition\
-Wstrict-prototypes\
-Wuninitialized
ifeq ("@HAVE_WJUMP@", "yes")
WCFLAGS += -Wjump-misses-init
endif
ifeq ("@HAVE_WCLOBBERED@", "yes")
WFLAGS +=\
-Wclobbered\
-Wempty-body\
-Wignored-qualifiers\
-Wlogical-op\
-Wtype-limits
WCFLAGS +=\
-Wmissing-parameter-type\
-Wold-style-declaration\
-Woverride-init
endif
ifeq ("@HAVE_WSYNCNAND@", "yes")
WFLAGS += -Wsync-nand
endif
endif
2024-04-24 00:30:35 +03:00
ifeq ("@HAVE_FULL_RELRO@", "yes")
2024-04-24 14:42:05 +03:00
comma := ,
2024-04-24 12:35:05 +03:00
ifneq ("@STATIC_LINK@", "yes")
2024-04-24 14:42:05 +03:00
ifeq (,$(findstring -z$(comma)relro,$(LDFLAGS)))
2024-04-24 12:35:05 +03:00
LDFLAGS += -Wl,-z,relro
endif
2024-04-24 14:42:05 +03:00
ifeq (,$(findstring -z$(comma)now,$(LDFLAGS)))
2024-04-24 12:35:05 +03:00
LDFLAGS += -Wl,-z,now
endif
2024-04-24 21:48:27 +03:00
# TODO: think about configure option for this flag
# for now leave decision on distro maitainer
#ifeq ( , $ ( findstring - z $ ( comma ) pack - relative - relocs , $ ( LDFLAGS ) ) )
# LDFLAGS += -Wl,-z,pack-relative-relocs
#endif
2024-04-24 12:35:05 +03:00
# For systems with old readline library that requires extra libs to link with
# we stick to default --no-as-needed and we avoid adding --as-needed flag
2024-04-24 21:48:27 +03:00
ifneq (-l,$(findstring -l,$(filter-out %readline,$(READLINE_LIBS))))
2024-04-24 12:35:05 +03:00
ifeq (,$(findstring --as-needed,$(LDFLAGS)))
LDFLAGS += -Wl,--as-needed
2024-04-24 00:30:35 +03:00
endif
endif
2018-05-14 14:16:43 +03:00
ifeq ("@HAVE_PIE@", "yes")
EXTRA_EXEC_CFLAGS += -fPIE
2024-04-24 00:30:35 +03:00
EXTRA_EXEC_LDFLAGS += -pie -fPIE
2018-05-14 14:16:43 +03:00
endif
endif
endif
#WFLAGS + = - W - Wno - sign - compare - Wno - unused - parameter - Wno - missing - field - initializers
#WFLAGS + = - Wsign - compare - Wunused - parameter - Wmissing - field - initializers
#WFLAGS + = - Wconversion - Wbad - function - cast - Wcast - qual - Waggregate - return - Wpacked
#WFLAGS + = - pedantic - std = gnu99
#DEFS + = - DDEBUG_CRC32
#
# Avoid recursive extension of CFLAGS
# by checking whether CFLAGS already has fPIC string
#
ifeq (,$(findstring fPIC,$(CFLAGS)))
CFLAGS += -fPIC
ifeq ("@DEBUG@", "yes")
ifeq (,$(findstring -g,$(CFLAGS)))
CFLAGS += -g
endif
CFLAGS += -fno-omit-frame-pointer
DEFS += -DDEBUG
endif
# end of fPIC protection
endif
2022-12-30 14:52:49 +03:00
# Combination of DEBUG_POOL and DEBUG_ENFORCE_POOL_LOCKING is not supported.
2018-05-14 14:16:43 +03:00
#DEFS + = - DDEBUG_POOL
# Default pool locking is using the crc checksum. With mprotect memory
# enforcing compilation faulty memory write could be easily found.
#DEFS + = - DDEBUG_ENFORCE_POOL_LOCKING
#DEFS + = - DBOUNDS_CHECK
# LVM is not supposed to use mmap while devices are suspended.
# This code causes a core dump if gets called.
#DEFS + = - DDEBUG_MEMLOCK
#CFLAGS + = - pg
#LDFLAGS + = - pg
STRIP=
#STRIP = - s
LVM_VERSION := $(shell cat $(top_srcdir)/VERSION)
LIB_VERSION_LVM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir)/VERSION)
LIB_VERSION_DM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir)/VERSION_DM)
2018-12-21 21:11:49 +03:00
INCLUDES += -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)/include -include configure.h
2018-05-14 14:16:43 +03:00
2018-06-04 15:22:14 +03:00
2018-12-14 15:12:27 +03:00
DEPS = $(top_builddir)/libdm/make.tmpl $(top_srcdir)/VERSION \
2021-03-02 23:20:42 +03:00
$(top_builddir)/libdm/Makefile
2018-05-14 14:16:43 +03:00
OBJECTS = $(SOURCES:%.c=%.o) $(CXXSOURCES:%.cpp=%.o)
POTFILES = $(SOURCES:%.c=%.pot)
.PHONY: all pofile distclean clean cleandir cflow device-mapper
2018-06-14 21:38:08 +03:00
.PHONY: install install_device-mapper install_lvm2
2018-05-14 14:16:43 +03:00
.PHONY: install_dbus_service
.PHONY: install_lib_shared install_dm_plugin install_lvm2_plugin
.PHONY: install_ocf install_systemd_generators install_all_man all_man man help
.PHONY: python_bindings install_python_bindings
.PHONY: $(SUBDIRS) $(SUBDIRS.install) $(SUBDIRS.clean) $(SUBDIRS.distclean)
2018-06-14 21:38:08 +03:00
.PHONY: $(SUBDIRS.pofile) $(SUBDIRS.cflow)
2018-05-14 14:16:43 +03:00
.PHONY: $(SUBDIRS.device-mapper) $(SUBDIRS.install-device-mapper)
.PHONY: $(SUBDIRS.generate) generate
SUBDIRS.device-mapper := $(SUBDIRS:=.device-mapper)
SUBDIRS.install := $(SUBDIRS:=.install)
SUBDIRS.install_device-mapper := $(SUBDIRS:=.install_device-mapper)
SUBDIRS.pofile := $(SUBDIRS:=.pofile)
SUBDIRS.cflow := $(SUBDIRS:=.cflow)
SUBDIRS.clean := $(SUBDIRS:=.clean)
SUBDIRS.distclean := $(SUBDIRS:=.distclean)
2023-10-13 17:34:48 +03:00
TARGETS += $(LIB_STATIC)
2023-09-22 09:47:38 +03:00
ifeq ("@SHARED_LINK@", "yes")
TARGETS += $(LIB_SHARED)
endif
2018-05-14 14:16:43 +03:00
2018-06-04 15:53:07 +03:00
all: $(SUBDIRS) $(TARGETS)
2018-05-14 14:16:43 +03:00
install: all $(SUBDIRS.install)
install_device-mapper: $(SUBDIRS.install_device-mapper)
2021-02-28 03:19:23 +03:00
install_device_mapper: install_device-mapper
2018-05-14 14:16:43 +03:00
cflow: $(SUBDIRS.cflow)
2018-06-04 15:53:07 +03:00
$(SUBDIRS): $(SUBDIRS.device-mapper)
2018-05-14 14:16:43 +03:00
$(MAKE) -C $@
$(SUBDIRS.device-mapper):
$(MAKE) -C $(@:.device-mapper=) device-mapper
$(SUBDIRS.install): $(SUBDIRS)
$(MAKE) -C $(@:.install=) install
$(SUBDIRS.install_device-mapper): device-mapper
$(MAKE) -C $(@:.install_device-mapper=) install_device-mapper
$(SUBDIRS.clean):
-$(MAKE) -C $(@:.clean=) clean
$(SUBDIRS.distclean):
-$(MAKE) -C $(@:.distclean=) distclean
$(SUBDIRS.cflow):
$(MAKE) -C $(@:.cflow=) cflow
ifeq ("@INTL@", "yes")
pofile: $(SUBDIRS.pofile) $(POTFILES)
$(SUBDIRS.pofile):
$(MAKE) -C $(@:.pofile=) pofile
endif
$(SUBDIRS.generate):
$(MAKE) -C $(@:.generate=) generate
ifneq ("$(CFLOW_LIST_TARGET)", "")
CLEAN_CFLOW += $(CFLOW_LIST_TARGET)
$(CFLOW_LIST_TARGET): $(CFLOW_LIST)
2021-03-20 01:10:55 +03:00
echo "CFLOW_SOURCES += $(addprefix $(abs_srcdir)/, $(CFLOW_LIST))" > $@
2018-05-14 14:16:43 +03:00
cflow: $(CFLOW_LIST_TARGET)
endif
ifneq ("$(CFLOW_TARGET)", "")
CLEAN_CFLOW += \
$(CFLOW_TARGET).cflow \
$(CFLOW_TARGET).xref \
$(CFLOW_TARGET).tree \
$(CFLOW_TARGET).rtree \
$(CFLOW_TARGET).rxref
ifneq ("$(CFLOW_CMD)", "")
CFLOW_FLAGS +=\
2021-03-20 01:10:55 +03:00
--cpp="$(CC) -E $(INCLUDES) $(VALGRIND_CFLAGS) $(BLKID_CFLAGS) $(DEFS) \
-I$(top_srcdir)/libdm/ioctl \
-I$(top_srcdir)/libdm" \
2018-05-14 14:16:43 +03:00
--symbol _ISbit:wrapper \
--symbol __attribute__:wrapper \
--symbol __const:type \
2021-03-20 01:10:55 +03:00
--symbol __const__:wrapper \
2018-05-14 14:16:43 +03:00
--symbol __extension__:wrapper \
2021-03-20 01:10:55 +03:00
--symbol __leaf__:wrapper \
2018-05-14 14:16:43 +03:00
--symbol __nonnull:wrapper \
--symbol __nothrow__:wrapper \
--symbol __pure__:wrapper \
--symbol __REDIRECT:wrapper \
--symbol __REDIRECT_NTH:wrapper \
2021-03-20 01:10:55 +03:00
--symbol __restrict:type \
--symbol __wur:wrapper
2018-05-14 14:16:43 +03:00
$(CFLOW_TARGET).cflow: $(CFLOW_SOURCES)
$(CFLOW_CMD) -o$@ $(CFLOW_FLAGS) $(CFLOW_SOURCES)
$(CFLOW_TARGET).rxref: $(CFLOW_SOURCES)
$(CFLOW_CMD) -o$@ $(CFLOW_FLAGS) -r --omit-arguments $(CFLOW_SOURCES)
$(CFLOW_TARGET).tree: $(CFLOW_SOURCES)
$(CFLOW_CMD) -o$@ $(CFLOW_FLAGS) --omit-arguments -T -b $(CFLOW_SOURCES)
$(CFLOW_TARGET).xref: $(CFLOW_SOURCES)
$(CFLOW_CMD) -o$@ $(CFLOW_FLAGS) --omit-arguments -x $(CFLOW_SOURCES)
#$(CFLOW_TARGET).rtree: $(CFLOW_SOURCES)
# $(CFLOW_CMD) -o$@ $(CFLOW_FLAGS) -r --omit-arguments -T -b $(CFLOW_SOURCES)
cflow: $(CFLOW_TARGET).cflow $(CFLOW_TARGET).tree $(CFLOW_TARGET).rxref $(CFLOW_TARGET).xref
#$(CFLOW_TARGET).rtree
endif
endif
.LIBPATTERNS = lib%.so lib%.a
2021-03-02 23:20:42 +03:00
DEPFLAGS=-MT $@ -MMD -MP -MF $*.d
2018-05-14 14:16:43 +03:00
# still needed in 2018 for 32bit builds
DEFS+=-D_FILE_OFFSET_BITS=64
2021-03-02 23:20:42 +03:00
%.o: %.c $(DEPS)
2024-04-08 14:10:16 +03:00
$(SHOW) " [CC] $(<F)"
2021-03-19 16:47:21 +03:00
@mkdir -p $(@D)
2023-02-12 15:12:23 +03:00
$(Q) $(CC) $(DEPFLAGS) -c $(INCLUDES) $(VALGRIND_CFLAGS) $(PROGS_CFLAGS) $(DEFS) $(DEFS_$@) $(WFLAGS) $(WCFLAGS) $(CFLAGS) $(CFLAGS_$@) $(CPPFLAGS) $< -o $@
2018-05-14 14:16:43 +03:00
2021-03-02 23:20:42 +03:00
%.o: %.cpp $(DEPS)
2024-04-08 14:10:16 +03:00
$(SHOW) " [CXX] $(<F)"
2021-03-19 16:47:21 +03:00
@mkdir -p $(@D)
2021-04-10 02:21:33 +03:00
$(Q) $(CXX) $(DEPFLAGS) -c $(INCLUDES) $(VALGRIND_CFLAGS) $(DEFS) $(DEFS_$@) $(WFLAGS) $(CXXFLAGS) $(CXXFLAGS_$@) $< -o $@
2018-05-14 14:16:43 +03:00
2021-03-19 16:47:21 +03:00
%.pot: %.c $(DEPS)
2024-04-08 14:10:16 +03:00
$(SHOW) " [CC] $@"
2021-03-19 16:47:21 +03:00
@mkdir -p $(@D)
2023-02-12 15:12:23 +03:00
$(Q) $(CC) -E $(INCLUDES) $(VALGRIND_CFLAGS) $(PROGS_CFLAGS) -include $(top_builddir)/po/pogen.h $(DEFS) $(WFLAGS) $(CFLAGS) $(CPPFLAGS) $< >$@
2018-05-14 14:16:43 +03:00
%.so: %.o
2024-04-08 14:10:16 +03:00
$(SHOW) " [CC] $(<F)"
2024-04-24 00:09:48 +03:00
$(Q) $(CC) -c $(CFLAGS) $(LDFLAGS) $(CLDFLAGS) $< $(LIBS) -o $@
2018-05-14 14:16:43 +03:00
ifneq (,$(LIB_SHARED))
TARGETS += $(LIB_SHARED).$(LIB_VERSION)
$(LIB_SHARED).$(LIB_VERSION): $(OBJECTS) $(LDDEPS)
2024-04-08 14:10:16 +03:00
$(SHOW) " [CC] $@"
2018-05-14 14:16:43 +03:00
ifeq ("@LIB_SUFFIX@","so")
$(Q) $(CC) -shared -Wl,-soname,$(notdir $@) \
2024-04-24 00:09:48 +03:00
$(CFLAGS) $(LDFLAGS) $(CLDFLAGS) $(OBJECTS) $(LIBS) -o $@
2018-05-14 14:16:43 +03:00
endif
ifeq ("@LIB_SUFFIX@","dylib")
$(Q) $(CC) -dynamiclib -dylib_current_version,$(LIB_VERSION) \
2024-04-24 00:09:48 +03:00
$(CFLAGS) $(LDFLAGS) $(CLDFLAGS) $(OBJECTS) $(LIBS) -o $@
2018-05-14 14:16:43 +03:00
endif
$(LIB_SHARED): $(LIB_SHARED).$(LIB_VERSION)
2024-04-08 14:10:16 +03:00
$(SHOW) " [LN] $(<F)"
2018-05-14 14:16:43 +03:00
$(Q) $(LN_S) -f $(<F) $@
CLEAN_TARGETS += $(LDDEPS) .exported_symbols_generated
install_lib_shared: $(LIB_SHARED)
2024-04-08 14:10:16 +03:00
$(SHOW) " [INSTALL] $<"
2018-05-14 14:16:43 +03:00
$(Q) $(INSTALL_PROGRAM) -D $< $(libdir)/$(<F).$(LIB_VERSION)
$(Q) $(INSTALL_DIR) $(usrlibdir)
$(Q) $(LN_S) -f $(USRLIB_RELPATH)$(<F).$(LIB_VERSION) $(usrlibdir)/$(<F)
# FIXME: plugins are installed to subdirs
# and for compatibility links in libdir are created
# when the code is fixed links could be removed.
install_dm_plugin: $(LIB_SHARED)
2024-04-08 14:10:16 +03:00
$(SHOW) " [INSTALL] $<"
2018-05-14 14:16:43 +03:00
$(Q) $(INSTALL_PROGRAM) -D $< $(libdir)/device-mapper/$(<F)
$(Q) $(LN_S) -f device-mapper/$(<F) $(libdir)/$(<F)
install_lvm2_plugin: $(LIB_SHARED)
2024-04-08 14:10:16 +03:00
$(SHOW) " [INSTALL] $<"
2018-05-14 14:16:43 +03:00
$(Q) $(INSTALL_PROGRAM) -D $< $(libdir)/lvm2/$(<F)
$(Q) $(LN_S) -f lvm2/$(<F) $(libdir)/$(<F)
$(Q) $(LN_S) -f $(<F) $(libdir)/$(<F).$(LIB_VERSION)
endif
$(LIB_STATIC): $(OBJECTS)
2024-04-08 14:10:16 +03:00
$(SHOW) " [AR] $@"
2018-05-14 14:16:43 +03:00
$(Q) $(RM) $@
$(Q) $(AR) rsv $@ $(OBJECTS) > /dev/null
2021-03-02 23:20:42 +03:00
%.d:
.PRECIOUS: %.d
2018-06-04 15:22:14 +03:00
2018-05-14 14:16:43 +03:00
%.mo: %.po
2024-04-08 14:10:16 +03:00
$(SHOW) " [MSGFMT] $(<F)"
2018-05-14 14:16:43 +03:00
$(Q) $(MSGFMT) -o $@ $<
CLEAN_TARGETS += \
$(SOURCES:%.c=%.d) $(SOURCES:%.c=%.gcno) $(SOURCES:%.c=%.gcda) \
$(SOURCES2:%.c=%.o) $(SOURCES2:%.c=%.d) $(SOURCES2:%.c=%.gcno) $(SOURCES2:%.c=%.gcda) \
$(POTFILES) $(CLEAN_CFLOW)
cleandir:
2024-04-08 14:10:16 +03:00
$(SHOW) " [CLEANDIR]"
2018-05-14 14:16:43 +03:00
ifneq (,$(firstword $(CLEAN_DIRS)))
2018-11-29 19:09:27 +03:00
$(Q) $(RM) -r $(CLEAN_DIRS)
2018-05-14 14:16:43 +03:00
endif
2018-11-29 19:09:27 +03:00
$(Q) $(RM) $(OBJECTS) $(TARGETS) $(CLEAN_TARGETS) core
2018-05-14 14:16:43 +03:00
clean: $(SUBDIRS.clean) cleandir
distclean: cleandir $(SUBDIRS.distclean)
2024-04-08 14:10:16 +03:00
$(SHOW) " [DISTCLEAN]"
2018-05-14 14:16:43 +03:00
ifneq (,$(firstword $(DISTCLEAN_DIRS)))
2018-11-29 19:09:27 +03:00
$(Q) $(RM) -r $(DISTCLEAN_DIRS)
2018-05-14 14:16:43 +03:00
endif
2018-11-29 19:09:27 +03:00
$(Q) $(RM) $(DISTCLEAN_TARGETS) Makefile
2018-05-14 14:16:43 +03:00
.exported_symbols_generated: $(EXPORTED_HEADER) .exported_symbols $(DEPS)
$(Q) set -e; \
( cat $(srcdir)/.exported_symbols; \
if test -n "$(EXPORTED_HEADER)"; then \
$(CC) -E -P $(INCLUDES) $(DEFS) $(EXPORTED_HEADER) | \
$(SED) -ne "/^typedef|}/!s/.*[ *]\($(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \
fi \
) > $@
EXPORTED_UC := $(shell echo $(EXPORTED_FN_PREFIX) | tr '[a-z]' '[A-Z]')
EXPORTED_SYMBOLS := $(wildcard $(srcdir)/.exported_symbols.Base $(srcdir)/.exported_symbols.$(EXPORTED_UC)_[0-9_]*[0-9])
.export.sym: .exported_symbols_generated $(EXPORTED_SYMBOLS)
ifeq (,$(firstword $(EXPORTED_SYMBOLS)))
$(Q) set -e; (echo "Base {"; echo " global:";\
2019-07-30 16:31:01 +03:00
$(SED) "/^ #/d;s/^/ /;s/$$/;/" $<;\
2021-04-04 14:06:09 +03:00
echo " local:"; echo " *;";\
2018-05-14 14:16:43 +03:00
echo "};";\
) > $@
else
$(Q) set -e;\
2019-07-30 16:31:01 +03:00
R=$$($(SORT) $^ | $(GREP) -v "^ #" | uniq -u);\
2018-05-14 14:16:43 +03:00
test -z "$ $R" || { echo "Mismatch between symbols in shared library and lists in .exported_symbols.* files: $ $R"; false; } ;\
2021-04-04 14:06:09 +03:00
LAST=;\
for i in $$(echo $(EXPORTED_SYMBOLS) | tr ' ' '\n' | $(SORT) -nt_ -k5 ); do\
2018-05-14 14:16:43 +03:00
echo "$ ${ i ##*. } {"; echo " global:";\
2019-07-30 16:31:01 +03:00
$(SED) "/^ #/d;s/^/ /;s/$$/;/" $ $i;\
2021-04-04 14:06:09 +03:00
if test -z "$ $ LAST "; then echo " local:"; echo " *;";fi;\
echo "}$ $ LAST ;";\
LAST=" $ ${ i ##*. } ";\
done > $@
2018-05-14 14:16:43 +03:00
endif
ifeq ("@USE_TRACKING@","yes")
ifeq (,$(findstring $(MAKECMDGOALS),cscope.out cflow clean distclean lcov \
2018-12-01 19:34:20 +03:00
help check check_local check_cluster check_lvmpolld))
2022-09-05 16:56:58 +03:00
.SECONDARY:
2021-03-19 18:12:10 +03:00
# Note: no tabs before -include
-include $(SOURCES:.c=.d) $(SOURCES2:.c=.d) $(CXXSOURCES:.cpp=.d)
2018-05-14 14:16:43 +03:00
endif
endif