diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-06 11:00:49 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-06 11:00:49 +0200 |
commit | cbcf86dde27767682483985e42f7ca49e1d3a208 (patch) | |
tree | 6abb8eabcda6e6aa64184aa24fb8c501f7c841b9 /lib/Makemodule.am | |
parent | a5f604469d5cde8cb654e209f1ec30bf8e44b51e (diff) |
Add LZO compressor implementation
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/Makemodule.am')
-rw-r--r-- | lib/Makemodule.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Makemodule.am b/lib/Makemodule.am index d174c99..aacec34 100644 --- a/lib/Makemodule.am +++ b/lib/Makemodule.am @@ -35,4 +35,11 @@ libcompress_a_CFLAGS += $(XZ_CFLAGS) libcompress_a_CPPFLAGS += -DWITH_XZ endif +if WITH_LZO +libcompress_a_SOURCES += lib/comp/lzo.c + +libcompress_a_CFLAGS += $(LZO_CFLAGS) +libcompress_a_CPPFLAGS += -DWITH_LZO +endif + noinst_LIBRARIES += libfstree.a libcompress.a libutil.a libsquashfs.a |