mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
1f3c11b441
Passes all regression except for the score tests, as I still have to merge in the missing files for these tests. Conflicts: .gitignore Makefile.am configure.in moses-chart/moses-chart.xcodeproj/project.pbxproj moses/src/ChartHypothesis.cpp moses/src/ChartTranslationOptionCollection.cpp moses/src/ChartTrellisPath.cpp moses/src/DotChart.cpp moses/src/LMList.h moses/src/LanguageModel.cpp moses/src/LanguageModel.h moses/src/LanguageModelFactory.cpp moses/src/LanguageModelRemote.h moses/src/LexicalReordering.h moses/src/Makefile.am moses/src/Manager.cpp moses/src/Parameter.cpp moses/src/RuleCubeQueue.h moses/src/ScoreIndexManager.cpp moses/src/StaticData.cpp moses/src/StaticData.h moses/src/TargetPhrase.cpp moses/src/TargetPhrase.h moses/src/TranslationOptionCollection.cpp
18 lines
460 B
Makefile
18 lines
460 B
Makefile
# not a GNU package. You can remove this line, if
|
|
# have all needed files, that a GNU package needs
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
# order is important here: build moses before moses-cmd
|
|
if WITH_MERT
|
|
MERT = mert
|
|
endif
|
|
if WITH_SERVER
|
|
SERVER = server
|
|
endif
|
|
if WITH_UNITTEST
|
|
UNITTEST = unittest
|
|
endif
|
|
SUBDIRS = kenlm moses/src OnDiskPt/src moses-cmd/src misc moses-chart-cmd/src CreateOnDisk/src mira $(MERT) $(SERVER) $(UNITTEST)
|