mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
13c1855e8f
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@4029 1f5c12ca-751b-0410-a591-d2e778427230
11 lines
601 B
Makefile
11 lines
601 B
Makefile
SALMDIR=/Users/hieuhoang/workspace/salm
|
|
FLAVOR?=o32
|
|
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
|