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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/training/phrase-extract.5/Makefile')
-rw-r--r--scripts/training/phrase-extract.5/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/training/phrase-extract.5/Makefile b/scripts/training/phrase-extract.5/Makefile
new file mode 100644
index 000000000..6d27111ef
--- /dev/null
+++ b/scripts/training/phrase-extract.5/Makefile
@@ -0,0 +1,12 @@
+all: extract
+
+clean:
+ rm -f *.o
+
+.cpp.o:
+ g++ -O6 -g -c $<
+
+extract: tables-core.o extract.o SyntaxTree.o XmlTree.o Tunnel.o Lattice.o LatticeNode.o SentenceAlignment.o Global.o InputFileStream.o TunnelCollection.o RuleCollection.o Rule.o Symbol.o SymbolSequence.o
+
+ g++ tables-core.o extract.o SyntaxTree.o XmlTree.o Tunnel.o Lattice.o LatticeNode.o SentenceAlignment.o Global.o InputFileStream.o TunnelCollection.o RuleCollection.o Rule.o Symbol.o SymbolSequence.o -lz -o extract
+