diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-22 05:12:27 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-22 05:12:27 +0000 |
commit | 0172721855098ca02b207231a654dffa5e4eb1c9 (patch) | |
tree | 8069c3a62e2d72bd64a2cdeee9724b2679c8a56b /extools/Makefile.am | |
parent | 37728b8be4d0b3df9da81fdda2198ff55b4b2d91 (diff) |
initial checkin
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@2 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'extools/Makefile.am')
-rw-r--r-- | extools/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extools/Makefile.am b/extools/Makefile.am new file mode 100644 index 00000000..5baefa21 --- /dev/null +++ b/extools/Makefile.am @@ -0,0 +1,31 @@ +bin_PROGRAMS = \ + extractor \ + mr_stripe_rule_reduce \ + build_lexical_translation \ + score_grammar \ + filter_grammar + +noinst_PROGRAMS = + +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 + +mr_stripe_rule_reduce_SOURCES = mr_stripe_rule_reduce.cc extract.cc sentence_pair.cc +mr_stripe_rule_reduce_LDADD = $(top_srcdir)/decoder/libcdec.a -lz +mr_stripe_rule_reduce_LDFLAGS = -all-static + +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 + |