summaryrefslogtreecommitdiff
path: root/klm
diff options
context:
space:
mode:
Diffstat (limited to 'klm')
-rw-r--r--klm/lm/Makefile.am27
-rw-r--r--klm/search/Makefile.am14
-rw-r--r--klm/util/Makefile.am20
3 files changed, 60 insertions, 1 deletions
diff --git a/klm/lm/Makefile.am b/klm/lm/Makefile.am
index a12c5f03..436cfd08 100644
--- a/klm/lm/Makefile.am
+++ b/klm/lm/Makefile.am
@@ -12,6 +12,33 @@ build_binary_LDADD = libklm.a ../util/libklm_util.a -lz
noinst_LIBRARIES = libklm.a
libklm_a_SOURCES = \
+ bhiksha.hh \
+ binary_format.hh \
+ blank.hh \
+ config.hh \
+ enumerate_vocab.hh \
+ facade.hh \
+ left.hh \
+ lm_exception.hh \
+ max_order.hh \
+ model.hh \
+ model_type.hh \
+ ngram_query.hh \
+ partial.hh \
+ quantize.hh \
+ read_arpa.hh \
+ return.hh \
+ search_hashed.hh \
+ search_trie.hh \
+ state.hh \
+ trie.hh \
+ trie_sort.hh \
+ value.hh \
+ value_build.hh \
+ virtual_interface.hh \
+ vocab.hh \
+ weights.hh \
+ word_index.hh \
bhiksha.cc \
binary_format.cc \
config.cc \
diff --git a/klm/search/Makefile.am b/klm/search/Makefile.am
index 5aea33c2..a34f6cea 100644
--- a/klm/search/Makefile.am
+++ b/klm/search/Makefile.am
@@ -1,11 +1,23 @@
noinst_LIBRARIES = libksearch.a
libksearch_a_SOURCES = \
+ applied.hh \
+ config.hh \
+ context.hh \
+ dedupe.hh \
+ edge.hh \
+ edge_generator.hh \
+ header.hh \
+ nbest.hh \
+ rule.hh \
+ types.hh \
+ vertex.hh \
+ vertex_generator.hh \
edge_generator.cc \
nbest.cc \
rule.cc \
vertex.cc \
vertex_generator.cc
-AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I..
+AM_CPPFLAGS = -W -Wall -Wno-sign-compare -I..
diff --git a/klm/util/Makefile.am b/klm/util/Makefile.am
index a676bdb3..bb441432 100644
--- a/klm/util/Makefile.am
+++ b/klm/util/Makefile.am
@@ -19,6 +19,26 @@
noinst_LIBRARIES = libklm_util.a
libklm_util_a_SOURCES = \
+ bit_packing.hh \
+ ersatz_progress.hh \
+ exception.hh \
+ file.hh \
+ file_piece.hh \
+ getopt.hh \
+ have.hh \
+ joint_sort.hh \
+ mmap.hh \
+ murmur_hash.hh \
+ pool.hh \
+ probing_hash_table.hh \
+ proxy_iterator.hh \
+ read_compressed.hh \
+ scoped.hh \
+ sized_iterator.hh \
+ sorted_uniform.hh \
+ string_piece.hh \
+ tokenize_piece.hh \
+ usage.hh \
ersatz_progress.cc \
bit_packing.cc \
exception.cc \