aboutsummaryrefslogtreecommitdiff
path: root/lib/common/Makemodule.am
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-09 18:00:03 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-15 21:48:47 +0200
commitc1e8ef8975458c1c814e85d1e3abe3b94c1fc65e (patch)
treea57886b4e6ccc767748994b05a85c45ef1491070 /lib/common/Makemodule.am
parent7f2fc2fc3942cfb47bd532b787c5c32ecfe45bcd (diff)
Move directory tree related code from libsquashfs to libcommon
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/common/Makemodule.am')
-rw-r--r--lib/common/Makemodule.am10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/common/Makemodule.am b/lib/common/Makemodule.am
index a50ddcb..5549cc3 100644
--- a/lib/common/Makemodule.am
+++ b/lib/common/Makemodule.am
@@ -1,11 +1,12 @@
libcommon_a_SOURCES = include/common.h include/simple_writer.h \
- include/compress_cli.h \
+ include/compress_cli.h include/dir_tree.h \
lib/common/src/hardlink.c lib/common/src/print_version.c \
lib/common/src/compress.c lib/common/src/comp_opt.c \
lib/common/src/parse_size.c lib/common/src/print_size.c \
lib/common/src/writer/init.c lib/common/src/writer/cleanup.c \
lib/common/src/writer/serialize_fstree.c lib/common/src/writer/finish.c\
- lib/common/src/fstree_cli.c lib/common/src/perror.c
+ lib/common/src/fstree_cli.c lib/common/src/perror.c \
+ lib/common/src/dir_tree.c lib/common/src/read_tree.c
libcommon_a_CFLAGS = $(AM_CFLAGS) $(LZO_CFLAGS)
if WITH_LZO
@@ -17,8 +18,11 @@ noinst_LIBRARIES += libcommon.a
test_fstree_cli_SOURCES = lib/common/test/fstree_cli.c
test_fstree_cli_LDADD = libcommon.a libio.a libutil.a libcompat.a
+test_get_node_path_SOURCES = lib/common/test/get_node_path.c
+test_get_node_path_LDADD = libcommon.a libsquashfs.la libcompat.a
+
LIBCOMMON_TESTS = \
- test_fstree_cli
+ test_fstree_cli test_get_node_path
check_PROGRAMS += $(LIBCOMMON_TESTS)
TESTS += $(LIBCOMMON_TESTS)