16 lines
319 B
Makefile
16 lines
319 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
VPATH = $(top_srcdir)/module/zstd
|
|
|
|
# -fno-tree-vectorize is set for gcc in zstd/common/compiler.h
|
|
# Set it for other compilers, too.
|
|
AM_CFLAGS += -fno-tree-vectorize
|
|
|
|
noinst_LTLIBRARIES = libzstd.la
|
|
|
|
KERNEL_C = \
|
|
lib/zstd.c \
|
|
zfs_zstd.c
|
|
|
|
nodist_libzstd_la_SOURCES = $(KERNEL_C)
|