diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-04 21:51:28 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-04 21:51:28 +0000 |
commit | b71d77972e17dbc70896fa7c9e7b96b466f8933a (patch) | |
tree | 5653015bcc3c82d488b7ef12955b1ce4cd91d826 /extools/Makefile.am | |
parent | 5c7eef3d08ecc2c30bcf0f9a5f17716c21f5bfc3 (diff) |
get rid of unused code, remove static linkage
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@480 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'extools/Makefile.am')
-rw-r--r-- | extools/Makefile.am | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/extools/Makefile.am b/extools/Makefile.am index 562599a3..1e82287d 100644 --- a/extools/Makefile.am +++ b/extools/Makefile.am @@ -1,10 +1,8 @@ bin_PROGRAMS = \ extractor \ mr_stripe_rule_reduce \ - build_lexical_translation \ filter_grammar \ featurize_grammar \ - filter_score_grammar \ extractor_monolingual noinst_PROGRAMS = @@ -12,33 +10,21 @@ noinst_PROGRAMS = sg_lexer.cc: sg_lexer.l $(LEX) -s -CF -8 -o$@ $< -filter_score_grammar_SOURCES = filter_score_grammar.cc extract.cc sentence_pair.cc striped_grammar.cc -filter_score_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz -filter_score_grammar_LDFLAGS = -all-static - filter_grammar_SOURCES = filter_grammar.cc extract.cc sentence_pair.cc striped_grammar.cc sg_lexer.cc filter_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz -filter_grammar_LDFLAGS = -all-static +#filter_grammar_LDFLAGS = -all-static featurize_grammar_SOURCES = featurize_grammar.cc extract.cc sentence_pair.cc sg_lexer.cc striped_grammar.cc featurize_grammar_LDADD = $(top_srcdir)/decoder/libcdec.a -lz -featurize_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 mr_stripe_rule_reduce_SOURCES = mr_stripe_rule_reduce.cc extract.cc sentence_pair.cc striped_grammar.cc sg_lexer.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 striped_grammar.cc extractor_LDADD = $(top_srcdir)/decoder/libcdec.a -lz -extractor_LDFLAGS = -all-static extractor_monolingual_SOURCES = extractor_monolingual.cc extractor_monolingual_LDADD = $(top_srcdir)/decoder/libcdec.a -lz -extractor_monolingual_LDFLAGS = -all-static AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I$(top_srcdir)/decoder |