mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-19 10:51:00 +03:00
4f9014b70b
Provide two make targets: checkabi and storeabi. storeabi uses libabigail to generate a reference copy of the ABI for the public libraries. checkabi compares such a reference to the compiled version, failing if they are not compatible. No ABI is generated for libzpool.so, it is only used by ztest and zdb and not external consumers. Co-authored-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Antonio Russo <aerusso@aerusso.net> Closes #11144
36 lines
684 B
Makefile
36 lines
684 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
PHONY =
|
|
|
|
pkgconfig_DATA = libzfsbootenv.pc
|
|
|
|
lib_LTLIBRARIES = libzfsbootenv.la
|
|
|
|
include $(top_srcdir)/config/Abigail.am
|
|
|
|
if BUILD_FREEBSD
|
|
DEFAULT_INCLUDES += -I$(top_srcdir)/include/os/freebsd/zfs
|
|
endif
|
|
if BUILD_LINUX
|
|
DEFAULT_INCLUDES += -I$(top_srcdir)/include/os/linux/zfs
|
|
endif
|
|
|
|
USER_C = \
|
|
lzbe_device.c \
|
|
lzbe_pair.c \
|
|
lzbe_util.c
|
|
|
|
dist_libzfsbootenv_la_SOURCES = \
|
|
$(USER_C)
|
|
|
|
libzfsbootenv_la_LIBADD = \
|
|
$(abs_top_builddir)/lib/libzfs/libzfs.la \
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|
|
|
|
libzfsbootenv_la_LDFLAGS =
|
|
|
|
if !ASAN_ENABLED
|
|
libzfsbootenv_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
libzfsbootenv_la_LDFLAGS += -version-info 1:0:0
|