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: 2c3cc5caf1810c6be86be00f8fed201f5a53e5e9 (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
29
30
lib_LIBRARIES = libirstlm.a

libirstlm_a_SOURCES = \
	dictionary.cpp \
	htable.cpp \
	lmtable.cpp \
	mempool.cpp \
	n_gram.cpp \
	ngramcache.cpp \
	util.cpp

library_includedir=$(includedir)
library_include_HEADERS = \
        dictionary.h \
        htable.h \
        lmtable.h \
        mempool.h \
        n_gram.h \
        ngramcache.h \
	util.h \
	gzfilebuf.h 

bin_PROGRAMS = compile-lm quantize-lm

AM_LDFLAGS=-L.
LIBS=-lirstlm -lz

compile_lm_SOURCES = compile-lm.cpp
quantize_lm_SOURCES = quantize-lm.cpp