From a85c6025903a2b6e97e1938b201b3361a0cbed66 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Tue, 30 Apr 2019 10:50:13 +0200 Subject: Add compressor library Signed-off-by: David Oberhollenzer --- lib/Makemodule.am | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'lib/Makemodule.am') diff --git a/lib/Makemodule.am b/lib/Makemodule.am index 18ec8c4..89ec538 100644 --- a/lib/Makemodule.am +++ b/lib/Makemodule.am @@ -2,4 +2,22 @@ libfstree_a_SOURCES = lib/fstree/fstree.c lib/fstree/fstree_from_file.c libfstree_a_SOURCES += lib/fstree/fstree_sort.c libfstree_a_SOURCES += include/fstree.h -noinst_LIBRARIES += libfstree.a +libcompress_a_SOURCES = lib/comp/compressor.c lib/comp/internal.h +libcompress_a_CFLAGS = $(AM_CFLAGS) +libcompress_a_CPPFLAGS = $(AM_CPPFLAGS) + +if WITH_ZLIB +libcompress_a_SOURCES += lib/comp/zlib.c + +libcompress_a_CFLAGS += $(ZLIB_CFLAGS) +libcompress_a_CPPFLAGS += -DWITH_ZLIB +endif + +if WITH_LZMA +libcompress_a_SOURCES += lib/comp/lzma.c + +libcompress_a_CFLAGS += $(XZ_CFLAGS) +libcompress_a_CPPFLAGS += -DWITH_LZMA +endif + +noinst_LIBRARIES += libfstree.a libcompress.a -- cgit v1.2.3