blob: 5e650af721296cc730e6212d1da664fdf8faee94 (
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
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
|
#noinst_PROGRAMS = \
# file_piece_test \
# joint_sort_test \
# key_value_packing_test \
# probing_hash_table_test \
# sorted_uniform_test
#TESTS = \
# file_piece_test \
# joint_sort_test \
# key_value_packing_test \
# probing_hash_table_test \
# sorted_uniform_test
#file_piece_test_SOURCES = file_piece_test.cc
#file_piece_test_LDADD = libklm_util.a
noinst_LIBRARIES = libklm_util.a
libklm_util_a_SOURCES = \
bit_packing.cc \
bit_packing.hh \
ersatz_progress.cc \
ersatz_progress.hh \
exception.cc \
exception.hh \
fake_ofstream.hh \
file.cc \
file.hh \
file_piece.cc \
file_piece.hh \
getopt.hh \
have.hh \
joint_sort.hh \
mmap.cc \
mmap.hh \
multi_intersection.hh \
murmur_hash.cc \
murmur_hash.hh \
pcqueue.hh \
pool.cc \
pool.hh \
probing_hash_table.hh \
proxy_iterator.hh \
read_compressed.cc \
read_compressed.hh \
scoped.cc \
scoped.hh \
sized_iterator.hh \
sorted_uniform.hh \
string_piece.cc \
string_piece.hh \
string_piece_hash.hh \
thread_pool.hh \
tokenize_piece.hh \
usage.cc \
usage.hh
AM_CPPFLAGS = -W -Wall -I$(top_srcdir)/klm -I$(top_srcdir)/klm/util/double-conversion
|