You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
451 B
16 lines
451 B
# SPDX-License-Identifier: GPL-2.0+
|
|
# Makefile.am
|
|
|
|
noinst_LTLIBRARIES = liberofs.la
|
|
liberofs_la_SOURCES = config.c io.c cache.c super.c inode.c xattr.c exclude.c \
|
|
namei.c data.c compress.c compressor.c zmap.c decompress.c
|
|
liberofs_la_CFLAGS = -Wall -Werror -I$(top_srcdir)/include
|
|
if ENABLE_LZ4
|
|
liberofs_la_CFLAGS += ${LZ4_CFLAGS}
|
|
liberofs_la_SOURCES += compressor_lz4.c
|
|
if ENABLE_LZ4HC
|
|
liberofs_la_SOURCES += compressor_lz4hc.c
|
|
endif
|
|
endif
|
|
|