Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « sigtest-filter « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddefc907bcff3eb4441ad66e486ba45e05a578d8 (plain)
1
2
3
4
5
6
7
8
9
10
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