File: Makefile.am

package info (click to toggle)
libdatrie 0.2.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,244 kB
  • sloc: sh: 5,045; ansic: 4,292; makefile: 205
file content (94 lines) | stat: -rw-r--r-- 1,795 bytes parent folder | download | duplicates (4)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
AM_CPPFLAGS = -I$(top_srcdir)

TESTS_ENVIRONMENT = top_builddir=$(top_builddir)

TESTS = \
	test_walk \
	test_iterator \
	test_store-retrieve \
	test_file \
	test_serialization \
	test_nonalpha \
	test_null_trie \
	test_term_state \
	test_byte_alpha \
	test_byte_list \
	$(NULL)

check_PROGRAMS = \
	test_walk \
	test_iterator \
	test_store-retrieve \
	test_file \
	test_serialization \
	test_nonalpha \
	test_null_trie \
	test_term_state \
	test_byte_alpha \
	test_byte_list \
	$(NULL)

noinst_HEADERS = \
	utils.h \
	$(NULL)

test_walk_SOURCES = \
	test_walk.c \
	utils.c \
	$(NULL)
test_walk_LDADD = $(top_builddir)/datrie/libdatrie.la

test_iterator_SOURCES = \
	test_iterator.c \
	utils.c \
	$(NULL)
test_iterator_LDADD = $(top_builddir)/datrie/libdatrie.la

test_store_retrieve_SOURCES = \
	test_store-retrieve.c \
	utils.c \
	$(NULL)
test_store_retrieve_LDADD = $(top_builddir)/datrie/libdatrie.la

test_file_SOURCES = \
	test_file.c \
	utils.c \
	$(NULL)
test_file_LDADD = $(top_builddir)/datrie/libdatrie.la

test_serialization_SOURCES = \
	test_serialization.c \
	utils.c \
	$(NULL)
test_serialization_LDADD = $(top_builddir)/datrie/libdatrie.la

test_nonalpha_SOURCES = \
	test_nonalpha.c \
	utils.c \
	$(NULL)
test_nonalpha_LDADD = $(top_builddir)/datrie/libdatrie.la

test_null_trie_SOURCES = \
	test_null_trie.c \
	utils.c \
	$(NULL)
test_null_trie_LDADD = $(top_builddir)/datrie/libdatrie.la

test_term_state_SOURCES = \
	test_term_state.c \
	utils.c \
	$(NULL)
test_term_state_LDADD = $(top_builddir)/datrie/libdatrie.la

test_byte_alpha_SOURCES = \
	test_byte_alpha.c \
	utils.c \
	$(NULL)
test_byte_alpha_LDADD = $(top_builddir)/datrie/libdatrie.la

test_byte_list_SOURCES = \
	test_byte_list.c \
	utils.c \
	$(NULL)
test_byte_list_LDADD = $(top_builddir)/datrie/libdatrie.la