diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-07-05 23:19:43 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-07-05 23:19:43 -0400 |
commit | f91319978f6e74e5c4e5701da8fbbacb96a3161e (patch) | |
tree | 65be0b73c4419cf909e3cf9cbc4a37eb1a8e0bff /phrasinator/Makefile.am | |
parent | 9366fc1ce04385290722bd703933bf0c1c166671 (diff) |
fast phrasinator that uses DPs instead of PYPs
Diffstat (limited to 'phrasinator/Makefile.am')
-rw-r--r-- | phrasinator/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/phrasinator/Makefile.am b/phrasinator/Makefile.am index 0b15a250..95a603df 100644 --- a/phrasinator/Makefile.am +++ b/phrasinator/Makefile.am @@ -1,6 +1,12 @@ -bin_PROGRAMS = gibbs_train_plm +bin_PROGRAMS = gibbs_train_plm head_bigram_model gibbs_train_plm_notables + +gibbs_train_plm_notables_SOURCES = gibbs_train_plm.notables.cc +gibbs_train_plm_notables_LDADD = $(top_srcdir)/utils/libutils.a -lz gibbs_train_plm_SOURCES = gibbs_train_plm.cc gibbs_train_plm_LDADD = $(top_srcdir)/utils/libutils.a -lz +head_bigram_model_SOURCES = head_bigram_model.cc +head_bigram_model_LDADD = $(top_srcdir)/utils/libutils.a -lz + AM_CPPFLAGS = -funroll-loops -W -Wall -Wno-sign-compare $(GTEST_CPPFLAGS) -I$(top_srcdir)/utils -I$(top_srcdir)/decoder -I$(top_srcdir)/mteval |