summaryrefslogtreecommitdiff
path: root/klm/util/Makefile.am
diff options
context:
space:
mode:
authorarmatthews <armatthe@cmu.edu>2014-10-13 14:59:23 -0400
committerarmatthews <armatthe@cmu.edu>2014-10-13 14:59:23 -0400
commit9a06ff1465eb3477ac3d1e92ab52e7eae40316a8 (patch)
tree808c266a3f510d00f37cd19c3f1da91d8fc683f7 /klm/util/Makefile.am
parente51da099233df0a384b04fe5908b30e44040d13e (diff)
parentd3e2ec203a5cf550320caa8023ac3dd103b0be7d (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'klm/util/Makefile.am')
-rw-r--r--klm/util/Makefile.am18
1 files changed, 12 insertions, 6 deletions
diff --git a/klm/util/Makefile.am b/klm/util/Makefile.am
index 5e650af7..5db6e340 100644
--- a/klm/util/Makefile.am
+++ b/klm/util/Makefile.am
@@ -1,21 +1,21 @@
-#noinst_PROGRAMS = \
+noinst_PROGRAMS = cat_compressed
+
+cat_compressed_SOURCES = cat_compressed_main.cc
+cat_compressed_LDADD = libklm_util.a
+
+#TESTS = \
# 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 = \
@@ -30,6 +30,8 @@ libklm_util_a_SOURCES = \
file.hh \
file_piece.cc \
file_piece.hh \
+ fixed_array.hh \
+ getopt.c \
getopt.hh \
have.hh \
joint_sort.hh \
@@ -38,6 +40,8 @@ libklm_util_a_SOURCES = \
multi_intersection.hh \
murmur_hash.cc \
murmur_hash.hh \
+ parallel_read.cc \
+ parallel_read.hh \
pcqueue.hh \
pool.cc \
pool.hh \
@@ -54,7 +58,9 @@ libklm_util_a_SOURCES = \
string_piece_hash.hh \
thread_pool.hh \
tokenize_piece.hh \
+ unistd.hh \
usage.cc \
usage.hh
AM_CPPFLAGS = -W -Wall -I$(top_srcdir)/klm -I$(top_srcdir)/klm/util/double-conversion
+