Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/training/eppex/Makefile.am')
-rw-r--r--scripts/training/eppex/Makefile.am28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/training/eppex/Makefile.am b/scripts/training/eppex/Makefile.am
deleted file mode 100644
index 970cc5d61..000000000
--- a/scripts/training/eppex/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-# eppex - epochal phrase table extraction for Statistical Machine Translation
-# Ceslav Przywara, UFAL MFF UK, Prague, 2011
-# $Id: $
-
-# Process this file with automake to produce Makefile.in
-
-ACLOCAL_AMFLAGS = -I m4
-
-AUTOMAKE_OPTIONS = foreign
-# Note: during development eppex has been compiled with -O6, but this flag
-# gets overwritten by -O2 set by automake.
-AM_CXXFLAGS = $(BOOST_CPPFLAGS) -Wall
-
-bin_PROGRAMS = counter eppex
-
-# Counter shares only some functionality of phrase-extract module.
-counter_CXXFLAGS = -DGET_COUNTS_ONLY
-
-# Uncomment to use std::tr1::unordered_map insteap of std::map in Lossy Counter implementation.
-# This is NOT recommended in the moment (hashing function needs to be optimized).
-#eppex_CXXFLAGS = -DUSE_UNORDERED_MAP
-
-counter_SOURCES = ../phrase-extract/tables-core.h ../phrase-extract/SentenceAlignment.h config.h phrase-extract.h shared.h IndexedPhrasesPair.h LossyCounter.h \
- ../phrase-extract/tables-core.cpp ../phrase-extract/SentenceAlignment.cpp phrase-extract.cpp shared.cpp counter.cpp
-
-eppex_SOURCES = ../phrase-extract/tables-core.h ../phrase-extract/SentenceAlignment.h config.h phrase-extract.h shared.h IndexedPhrasesPair.h LossyCounter.h \
- ../phrase-extract/tables-core.cpp ../phrase-extract/SentenceAlignment.cpp phrase-extract.cpp shared.cpp eppex.cpp
-