mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
f1ece319fd
The ABI should be included when generating the `make dist` tarball since it's required by the `make checkabi` target. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #11225
35 lines
648 B
Makefile
35 lines
648 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
PHONY =
|
|
|
|
pkgconfig_DATA = libzfs_core.pc
|
|
|
|
lib_LTLIBRARIES = libzfs_core.la
|
|
|
|
include $(top_srcdir)/config/Abigail.am
|
|
|
|
USER_C = \
|
|
libzfs_core.c
|
|
|
|
libzfs_core_la_SOURCES = $(USER_C)
|
|
|
|
libzfs_core_la_LIBADD = \
|
|
$(abs_top_builddir)/lib/libzutil/libzutil.la \
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|
|
|
|
libzfs_core_la_LIBADD += $(LTLIBINTL)
|
|
|
|
libzfs_core_la_LDFLAGS = -pthread
|
|
|
|
if !ASAN_ENABLED
|
|
libzfs_core_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
if BUILD_FREEBSD
|
|
libzfs_core_la_LIBADD += -lutil -lgeom
|
|
endif
|
|
|
|
libzfs_core_la_LDFLAGS += -version-info 3:0:0
|
|
|
|
# Library ABI
|
|
EXTRA_DIST = libzfs_core.abi libzfs_core.suppr
|