mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 13:23:25 +03:00
c5d39f039f
Plain (single-thread) moses should configure and build as before. Multi-thread and server only available if appropriate options are selected at configure/compile time. git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@2477 1f5c12ca-751b-0410-a591-d2e778427230
13 lines
317 B
Makefile
13 lines
317 B
Makefile
# not a GNU package. You can remove this line, if
|
|
# have all needed files, that a GNU package needs
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
# order is important here: build moses before moses-cmd
|
|
if WITH_MERT
|
|
MERT = mert
|
|
endif
|
|
if WITH_SERVER
|
|
SERVER = server
|
|
endif
|
|
SUBDIRS = moses/src moses-cmd/src misc $(MERT) $(SERVER)
|