mosesdecoder/kenlm/Makefile.am
heafield 3402bdfe7a Merge mtm_lm into trunk.
There's a fair number of files with no change that somebody must have touched in the branch so metadata is being recorded. 
Updates kenlm binary file format, sorry. 
It looks like OOV isn't being computed in EvaluateChart anyway, just phrasal.  
  


git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4247 1f5c12ca-751b-0410-a591-d2e778427230
2011-09-21 16:06:48 +00:00

33 lines
725 B
Makefile

lib_LTLIBRARIES = libkenlm.la
bin_PROGRAMS = query build_binary
AM_CPPFLAGS = -W -Wall -ffor-scope -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES $(BOOST_CPPFLAGS)
libkenlm_la_SOURCES = \
lm/bhiksha.cc \
lm/binary_format.cc \
lm/config.cc \
lm/lm_exception.cc \
lm/model.cc \
lm/search_hashed.cc \
lm/search_trie.cc \
lm/quantize.cc \
lm/read_arpa.cc \
lm/trie.cc \
lm/trie_sort.cc \
lm/virtual_interface.cc \
lm/vocab.cc \
util/file.cc \
util/murmur_hash.cc \
util/mmap.cc \
util/file_piece.cc \
util/ersatz_progress.cc \
util/exception.cc \
util/bit_packing.cc
query_SOURCES = lm/ngram_query.cc
query_LDADD = libkenlm.la
build_binary_SOURCES = lm/build_binary.cc
build_binary_LDADD = libkenlm.la