Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lm
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2011-12-01 21:17:28 +0400
committerKenneth Heafield <github@kheafield.com>2011-12-01 21:17:28 +0400
commitc53453b266d2377dfdbc71c9960879cd01f936c6 (patch)
tree772502d3f89270f9774f96fbe0cf77881967e8d2 /lm
parente20a098a29f84c225ea0923ab72219f0dda355a6 (diff)
No more autotools (with bhaddow in the room)
Diffstat (limited to 'lm')
-rw-r--r--lm/Makefile.am25
1 files changed, 0 insertions, 25 deletions
diff --git a/lm/Makefile.am b/lm/Makefile.am
deleted file mode 100644
index f208f3223..000000000
--- a/lm/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-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 = \
- bhiksha.cc \
- binary_format.cc \
- config.cc \
- lm_exception.cc \
- model.cc \
- search_hashed.cc \
- search_trie.cc \
- quantize.cc \
- read_arpa.cc \
- trie.cc \
- trie_sort.cc \
- virtual_interface.cc \
- vocab.cc
-
-query_SOURCES = ngram_query.cc
-query_LDADD = libkenlm.la $(top_srcdir)/util/libkenutil.la
-
-build_binary_SOURCES = build_binary.cc
-build_binary_LDADD = libkenlm.la $(top_srcdir)/util/libkenutil.la
-