mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-02 17:09:36 +03:00
11 lines
601 B
Makefile
11 lines
601 B
Makefile
SALMDIR=/Users/hieuhoang/workspace/salm
|
|
FLAVOR?=o64
|
|
INC=-I$(SALMDIR)/Src/Shared -I$(SALMDIR)/Src/SuffixArrayApplications -I$(SALMDIR)/Src/SuffixArrayApplications/SuffixArraySearch
|
|
OBJS=$(SALMDIR)/Distribution/Linux/Objs/Search/_SuffixArrayApplicationBase.$(FLAVOR) $(SALMDIR)/Distribution/Linux/Objs/Search/_SuffixArraySearchApplicationBase.$(FLAVOR) $(SALMDIR)/Distribution/Linux/Objs/Shared/_String.$(FLAVOR) $(SALMDIR)/Distribution/Linux/Objs/Shared/_IDVocabulary.$(FLAVOR)
|
|
|
|
all: filter-pt
|
|
|
|
filter-pt: filter-pt.cpp
|
|
./check-install $(SALMDIR)
|
|
$(CXX) -O6 $(INC) $(OBJS) -o filter-pt filter-pt.cpp
|