summaryrefslogtreecommitdiff
path: root/klm/lm/Makefile.am
blob: eb71c0f58f1375d7ecff3e8f86235a526191bfbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#noinst_PROGRAMS = \
#  ngram_test
#TESTS = ngram_test
#ngram_test_SOURCES = ngram_test.cc
#ngram_test_LDADD = ../util/libklm_util.a

noinst_LIBRARIES = libklm.a

libklm_a_SOURCES = \
  binary_format.cc \
  config.cc \
  lm_exception.cc \
  model.cc \
  ngram_query.cc \
  read_arpa.cc \
  search_hashed.cc \
  search_trie.cc \
  trie.cc \
  virtual_interface.cc \
  vocab.cc

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