added biconcor to make

git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3634 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
phkoehn 2010-10-21 10:04:38 +00:00
parent 85a5a13e4c
commit 3b880bbdda

View File

@ -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