diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-04-30 10:50:13 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-02 12:40:06 +0200 |
commit | a85c6025903a2b6e97e1938b201b3361a0cbed66 (patch) | |
tree | cf92df4ba782c4b9c4a49dcf1cc3e25f849723a9 /lib/Makemodule.am | |
parent | fa7f378bf627ddcfd7a93a000149e4d8c3810bf5 (diff) |
Add compressor library
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/Makemodule.am')
-rw-r--r-- | lib/Makemodule.am | 20 |
1 files changed, 19 insertions, 1 deletions
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 |