diff options
author | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 02:55:46 +0000 |
---|---|---|
committer | redpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-11 02:55:46 +0000 |
commit | 7c557a1191730fba6b87ff8a94c7429aff5940b7 (patch) | |
tree | b8d55acdb1a6f11df630e6d9a670dbc368d8d637 | |
parent | 48293abe985fba85c456cce20c12477d460ce0e3 (diff) |
link line fixes
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@514 ec762483-ff6d-05da-a07a-a48fb63a330f
-rw-r--r-- | mteval/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mteval/Makefile.am b/mteval/Makefile.am index 7ae14045..e58492fc 100644 --- a/mteval/Makefile.am +++ b/mteval/Makefile.am @@ -12,12 +12,12 @@ noinst_LIBRARIES = libmteval.a libmteval_a_SOURCES = ter.cc comb_scorer.cc aer_scorer.cc scorer.cc fast_score_SOURCES = fast_score.cc -fast_score_LDADD = $(top_srcdir)/utils/libutils.a libmteval.a -lz +fast_score_LDADD = libmteval.a $(top_srcdir)/utils/libutils.a -lz mbr_kbest_SOURCES = mbr_kbest.cc -mbr_kbest_LDADD = $(top_srcdir)/utils/libutils.a libmteval.a -lz +mbr_kbest_LDADD = libmteval.a $(top_srcdir)/utils/libutils.a -lz scorer_test_SOURCES = scorer_test.cc -scorer_test_LDADD = $(GTEST_LDFLAGS) $(GTEST_LIBS) $(top_srcdir)/utils/libutils.a libmteval.a -lz +scorer_test_LDADD = libmteval.a $(GTEST_LDFLAGS) $(GTEST_LIBS) $(top_srcdir)/utils/libutils.a -lz AM_CPPFLAGS = -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I$(top_srcdir)/utils |