aboutsummaryrefslogtreecommitdiff
path: root/lib/common/Makemodule.am
blob: 9438d3a8324791d4b6c77c6328c5e25c7fd38f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
libcommon_a_SOURCES = include/common.h include/simple_writer.h \
	include/compress_cli.h include/dir_tree.h \
	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/dir_tree.c lib/common/src/read_tree.c \
	lib/common/src/stream.c
libcommon_a_CFLAGS = $(AM_CFLAGS) $(LZO_CFLAGS)

if WITH_LZO
libcommon_a_SOURCES += lib/common/src/comp_lzo.c
endif

noinst_LIBRARIES += libcommon.a

test_istream_mem_SOURCES = lib/common/test/istream_mem.c
test_istream_mem_LDADD = libcommon.a libsquashfs.la libcompat.a
test_istream_mem_CPPFLAGS = $(AM_CPPFLAGS)

test_fstree_cli_SOURCES = lib/common/test/fstree_cli.c
test_fstree_cli_LDADD = libcommon.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_istream_mem test_fstree_cli test_get_node_path

check_PROGRAMS += $(LIBCOMMON_TESTS)
TESTS += $(LIBCOMMON_TESTS)