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