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

Makefile « misc - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab038611e938ac0e6bb73e54cda51a7435d2ea25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26


BOOSTDIR=/home/ws06/cdyer/boost-stage
SRIDIR=/home/ws06/cdyer/srilm/lib/i686
CXX=g++
CXXFLAGS=-W -Wall -O0 -g -ggdb -ffor-scope -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES
LDFLAGS=-static
INCLUDES=-I../moses/src -I$(BOOSTDIR) -I$(BOOSTDIR)/include
BOOSTLIBS=-L$(BOOSTDIR)/lib -L$(BOOSTDIR)/stage/lib -lboost_iostreams-gcc-mt -lboost_filesystem-gcc-mt -lboost_thread-gcc-mt -lz
SRILIBS=-L$(SRIDIR) -loolm -ldstruct -lmisc

default: processPhraseTable

%.o: %.cpp
	$(CXX) $(CXXFLAGS) $(INCLUDES) $< -c -o $@



MOSESLIB =../moses/src/libmoses.a

processPhraseTable: processPhraseTable.o GenerateTuples.o $(MOSESLIB)
	$(CXX) $(LDFLAGS) $^ -o $@ $(SRILIBS) $(BOOSTLIBS)