blob: 61d98d97732211e5e940ea8c917fe372b4576387 (
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
|
bin_PROGRAMS = build_binary
build_binary_SOURCES = build_binary.cc
build_binary_LDADD = libklm.a ../util/libklm_util.a -lz
#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..
|