mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
d31277abb1
Factor Linux specific pieces out of libspl. Reviewed-by: Ryan Moeller <ryan@ixsystems.com> Reviewed-by: Sean Eric Fagan <sef@ixsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #9336
17 lines
327 B
Makefile
17 lines
327 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
lib_LTLIBRARIES = libzfs_core.la
|
|
|
|
USER_C = \
|
|
libzfs_core.c
|
|
|
|
nodist_libzfs_core_la_SOURCES = $(USER_C)
|
|
|
|
libzfs_core_la_LIBADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libuutil/libuutil.la
|
|
|
|
libzfs_core_la_LDFLAGS = -version-info 1:0:0
|
|
|
|
EXTRA_DIST = $(USER_C)
|