From 567f2bd17c05d31cd8a9b9d351f9030cddf53cb7 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Wed, 9 Jul 2014 15:26:00 +0200 Subject: c++ implementation --- fast/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fast/Makefile (limited to 'fast/Makefile') diff --git a/fast/Makefile b/fast/Makefile new file mode 100644 index 0000000..4aea1ac --- /dev/null +++ b/fast/Makefile @@ -0,0 +1,12 @@ +all: hypergraph.o main.cc + clang -std=c++11 -lstdc++ main.cc hypergraph.o -o fast_weaver + +hypergraph.o: hypergraph.cc hypergraph.hh grammar.o semiring.hh + clang -std=c++11 -lstdc++ -c hypergraph.cc grammar.o + +grammar.o: grammar.cc grammar.hh + clang -std=c++11 -lstdc++ -c grammar.cc + +clean: + rm fast_weaver hypergraph.o grammar.o + -- cgit v1.2.3