From 3b880bbdda00117d6a5ac98c32d6c26ba342e225 Mon Sep 17 00:00:00 2001 From: phkoehn Date: Thu, 21 Oct 2010 10:04:38 +0000 Subject: [PATCH] added biconcor to make git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3634 1f5c12ca-751b-0410-a591-d2e778427230 --- scripts/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/Makefile b/scripts/Makefile index 540cc12d6..ef7ffa121 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -26,14 +26,14 @@ RELEASEDIR=$(TARGETDIR)/scripts-$(TS) all: compile -SUBDIRS=phrase-extract symal mbr lexical-reordering -SUBDIRS_CLEAN=$(SUBDIRS) memscore +SUBDIRS=training/phrase-extract training/symal training/mbr training/lexical-reordering ems/biconcor +SUBDIRS_CLEAN=$(SUBDIRS) training/memscore compile: compile-memscore touch release-exclude # No files excluded by default pwd=`pwd`; \ for subdir in $(SUBDIRS); do \ - $(MAKE) -C training/$$subdir || exit 1; \ + $(MAKE) -C $$subdir || exit 1; \ echo "### Compiler $$subdir"; \ cd $$pwd; \ done @@ -50,7 +50,7 @@ compile-memscore: clean: pwd=`pwd`; \ for subdir in $(SUBDIRS_CLEAN); do \ - $(MAKE) -C training/$$subdir clean || exit 1; \ + $(MAKE) -C $$subdir clean || exit 1; \ echo "### Compiler $$subdir"; \ cd $$pwd; \ done