mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
b1c932d318
The zfs libraries were never properly versioned. Since the API has remained static for quite some time this we never an issue. However, going forward they should be versioned. This commit versions all of the libraries to 1.0.0. From here on out this version must be updated to reflect changes to the library.
34 lines
1007 B
Makefile
34 lines
1007 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
AM_CFLAGS += $(DEBUG_STACKFLAGS) $(FRAME_LARGER_THAN)
|
|
|
|
SUBDIRS = include $(TARGET_ASM_DIR)
|
|
DIST_SUBDIRS = include asm-generic asm-i386 asm-x86_64
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
AM_CCASFLAGS = \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
lib_LTLIBRARIES = libspl.la
|
|
|
|
libspl_la_SOURCES = \
|
|
$(top_srcdir)/lib/libspl/getexecname.c \
|
|
$(top_srcdir)/lib/libspl/gethrtime.c \
|
|
$(top_srcdir)/lib/libspl/gethrestime.c \
|
|
$(top_srcdir)/lib/libspl/getmntany.c \
|
|
$(top_srcdir)/lib/libspl/list.c \
|
|
$(top_srcdir)/lib/libspl/mkdirp.c \
|
|
$(top_srcdir)/lib/libspl/strlcat.c \
|
|
$(top_srcdir)/lib/libspl/strlcpy.c \
|
|
$(top_srcdir)/lib/libspl/strnlen.c \
|
|
$(top_srcdir)/lib/libspl/timestamp.c \
|
|
$(top_srcdir)/lib/libspl/zone.c \
|
|
$(top_srcdir)/lib/libspl/xdr.c \
|
|
$(top_srcdir)/lib/libspl/$(TARGET_ASM_DIR)/atomic.S \
|
|
$(top_srcdir)/lib/libspl/include/sys/list.h \
|
|
$(top_srcdir)/lib/libspl/include/sys/list_impl.h
|
|
|
|
libspl_la_LDFLAGS = -lrt -version-info 1:0:0
|