summaryrefslogtreecommitdiff
path: root/klm/util/Makefile.am
blob: 5306850fdf4aaa0e64ab71adbdd2ec592fc2bcf4 (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

#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 = \
  ersatz_progress.cc \
  bit_packing.cc \
  exception.cc \
	file.cc \
  file_piece.cc \
  mmap.cc \
  murmur_hash.cc \
  pool.cc \
  string_piece.cc \
	usage.cc

AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I..