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
diff options
context:
space:
mode:
authorredpony <redpony@1f5c12ca-751b-0410-a591-d2e778427230>2006-07-21 18:53:24 +0400
committerredpony <redpony@1f5c12ca-751b-0410-a591-d2e778427230>2006-07-21 18:53:24 +0400
commitb5755e2f8e110b23395e8b1adc7bd880f5dc7e5e (patch)
treee0c13578e8db55f4d505c94b6a9b590eb913bbae /irstlm/src/Makefile.am
parentc220c8650140c4ca1ff0e6a67d83daec67875388 (diff)
add simple CL program to compile language models into the IRST LM bin format
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@242 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'irstlm/src/Makefile.am')
-rw-r--r--irstlm/src/Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/irstlm/src/Makefile.am b/irstlm/src/Makefile.am
index 010d46d90..ea26d6945 100644
--- a/irstlm/src/Makefile.am
+++ b/irstlm/src/Makefile.am
@@ -9,3 +9,11 @@ libirstlm_a_SOURCES = \
library_includedir=$(includedir)
library_include_HEADERS = dictionary.h lmtable.h ngram.h
+
+bin_PROGRAMS = compile-lm
+
+AM_LDFLAGS=-L .
+LIBS=-lirstlm
+
+compile_lm_SOURCES = compile-lm.cpp
+