diff options
author | Chris Dyer <prguest11@taipan.cs> | 2012-03-08 18:47:23 +0000 |
---|---|---|
committer | Chris Dyer <prguest11@taipan.cs> | 2012-03-08 18:47:23 +0000 |
commit | 301106af9c13285ff252c618848eaa54b9b0e490 (patch) | |
tree | 12816879bb6695966da1b9fe4d3dbd197fc8312a | |
parent | 9a8256604686a9283e7afce04e6feaab4922dd45 (diff) |
fix link error on linux
-rw-r--r-- | gi/pf/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gi/pf/Makefile.am b/gi/pf/Makefile.am index 9888a70b..94364c3d 100644 --- a/gi/pf/Makefile.am +++ b/gi/pf/Makefile.am @@ -5,14 +5,14 @@ noinst_LIBRARIES = libpf.a libpf_a_SOURCES = base_distributions.cc reachability.cc cfg_wfst_composer.cc corpus.cc unigrams.cc ngram_base.cc transliterations.cc nuisance_test_SOURCES = nuisance_test.cc -nuisance_test_LDADD = libpf.a +nuisance_test_LDADD = libpf.a $(top_srcdir)/decoder/libcdec.a $(top_srcdir)/mteval/libmteval.a $(top_srcdir)/utils/libutils.a $(top_srcdir)/klm/lm/libklm.a $(top_srcdir)/klm/util/libklm_util.a -lz align_lexonly_SOURCES = align-lexonly.cc align_lexonly_pyp_SOURCES = align-lexonly-pyp.cc align_tl_SOURCES = align-tl.cc -align_tl_LDADD = libpf.a +align_tl_LDADD = libpf.a $(top_srcdir)/decoder/libcdec.a $(top_srcdir)/mteval/libmteval.a $(top_srcdir)/utils/libutils.a $(top_srcdir)/klm/lm/libklm.a $(top_srcdir)/klm/util/libklm_util.a -lz itg_SOURCES = itg.cc |