diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-04-30 12:29:33 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-02 12:40:06 +0200 |
commit | c1efe73569d429b49a9e6e1c9c72b947d414270c (patch) | |
tree | 953a2d4943a36b62023391d5ae5073dfd6087029 /lib/Makemodule.am | |
parent | a85c6025903a2b6e97e1938b201b3361a0cbed66 (diff) |
Add utility functions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/Makemodule.am')
-rw-r--r-- | lib/Makemodule.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Makemodule.am b/lib/Makemodule.am index 89ec538..67804d8 100644 --- a/lib/Makemodule.am +++ b/lib/Makemodule.am @@ -6,6 +6,9 @@ libcompress_a_SOURCES = lib/comp/compressor.c lib/comp/internal.h libcompress_a_CFLAGS = $(AM_CFLAGS) libcompress_a_CPPFLAGS = $(AM_CPPFLAGS) +libutil_a_SOURCES = lib/util/canonicalize_name.c lib/util/write_retry.c +libutil_a_SOURCES += lib/util/read_retry.c include/util.h + if WITH_ZLIB libcompress_a_SOURCES += lib/comp/zlib.c @@ -20,4 +23,4 @@ libcompress_a_CFLAGS += $(XZ_CFLAGS) libcompress_a_CPPFLAGS += -DWITH_LZMA endif -noinst_LIBRARIES += libfstree.a libcompress.a +noinst_LIBRARIES += libfstree.a libcompress.a libutil.a |