summaryrefslogtreecommitdiff
path: root/extools/Makefile.am
diff options
context:
space:
mode:
authorredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-02 19:23:08 +0000
committerredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-02 19:23:08 +0000
commit36b0eac74f5d8f8674659826a72276b47d687bd6 (patch)
treeaf55f23790cb50810637af56e3de8fcdb6db7868 /extools/Makefile.am
parent0f0ffedff50f371128a1305e475dafdc19aaa26c (diff)
filter and score in a single file
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@118 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'extools/Makefile.am')
-rw-r--r--extools/Makefile.am15
1 files changed, 5 insertions, 10 deletions
diff --git a/extools/Makefile.am b/extools/Makefile.am
index 5baefa21..bce6c404 100644
--- a/extools/Makefile.am
+++ b/extools/Makefile.am
@@ -2,11 +2,14 @@ bin_PROGRAMS = \
extractor \
mr_stripe_rule_reduce \
build_lexical_translation \
- score_grammar \
- filter_grammar
+ filter_score_grammar
noinst_PROGRAMS =
+filter_score_grammar_SOURCES = filter_score_grammar.cc extract.cc sentence_pair.cc
+filter_score_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz
+filter_score_grammar_LDFLAGS = -all-static
+
build_lexical_translation_SOURCES = build_lexical_translation.cc extract.cc sentence_pair.cc
build_lexical_translation_LDADD = $(top_srcdir)/decoder/libcdec.a -lz
build_lexical_translation_LDFLAGS = -all-static
@@ -19,13 +22,5 @@ extractor_SOURCES = sentence_pair.cc extract.cc extractor.cc
extractor_LDADD = $(top_srcdir)/decoder/libcdec.a -lz
extractor_LDFLAGS = -all-static
-filter_grammar_SOURCES = sentence_pair.cc extract.cc filter_grammar.cc
-filter_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz
-filter_grammar_LDFLAGS = -all-static
-
-score_grammar_SOURCES = sentence_pair.cc score_grammar.cc extract.cc
-score_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz
-score_grammar_LDFLAGS = -all-static
-
AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I$(top_srcdir)/decoder