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

Makefile.am « src « irstlm - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea26d69454b4f03ff6a4e2ec8c9e2e35b8b5bef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
lib_LIBRARIES = libirstlm.a

libirstlm_a_SOURCES = \
	dictionary.cpp \
	htable.cpp \
	lmtable.cpp \
	mempool.cpp \
	ngram.cpp

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