diff options
Diffstat (limited to 'extools/Makefile.am')
-rw-r--r-- | extools/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/extools/Makefile.am b/extools/Makefile.am index 1c0da21b..807fe7d6 100644 --- a/extools/Makefile.am +++ b/extools/Makefile.am @@ -4,7 +4,8 @@ bin_PROGRAMS = \ build_lexical_translation \ filter_grammar \ featurize_grammar \ - filter_score_grammar + filter_score_grammar \ + extractor_monolingual noinst_PROGRAMS = @@ -35,5 +36,9 @@ 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 |