mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
e0eaaf8144
The current code base almost compiles on SPARC, but a few fixes are required for the code to compile (and work efficiently). Code in this PR comes from OpenZFS project which was initially dropped when porting the crypto framework. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Pengcheng Xu <i@jsteward.moe> Closes #6733 Closes #6738 Closes #6750
48 lines
760 B
Makefile
48 lines
760 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
VPATH = \
|
|
$(top_srcdir)/lib/libspl \
|
|
$(top_srcdir)/lib/libspl/$(TARGET_ASM_DIR)
|
|
|
|
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 = \
|
|
$(CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libspl.la
|
|
|
|
USER_C = \
|
|
getexecname.c \
|
|
gethrtime.c \
|
|
gethrestime.c \
|
|
getmntany.c \
|
|
list.c \
|
|
mkdirp.c \
|
|
page.c \
|
|
strlcat.c \
|
|
strlcpy.c \
|
|
strnlen.c \
|
|
timestamp.c \
|
|
zone.c \
|
|
include/sys/list.h \
|
|
include/sys/list_impl.h
|
|
|
|
USER_ASM = atomic.S
|
|
|
|
KERNEL_C =
|
|
|
|
nodist_libspl_la_SOURCES = \
|
|
$(USER_C) \
|
|
$(USER_ASM) \
|
|
$(KERNEL_C)
|
|
|
|
libspl_la_LIBADD = -lrt
|
|
|
|
EXTRA_DIST = $(USER_C)
|