summaryrefslogtreecommitdiff
path: root/fast/Makefile
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-07-15 18:19:00 +0200
committerPatrick Simianer <p@simianer.de>2014-07-15 18:19:00 +0200
commite207b43bf179277d53b3adc767372469bd8a2ad2 (patch)
tree6cfab61e60bba7515b2872448b4fc5f2b860d822 /fast/Makefile
parent567f2bd17c05d31cd8a9b9d351f9030cddf53cb7 (diff)
before msgpack
Diffstat (limited to 'fast/Makefile')
-rw-r--r--fast/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/fast/Makefile b/fast/Makefile
index 4aea1ac..a453fd3 100644
--- a/fast/Makefile
+++ b/fast/Makefile
@@ -1,8 +1,8 @@
all: hypergraph.o main.cc
- clang -std=c++11 -lstdc++ main.cc hypergraph.o -o fast_weaver
+ clang -std=c++11 -lstdc++ main.cc hypergraph.o json/libjson.a -o fast_weaver
hypergraph.o: hypergraph.cc hypergraph.hh grammar.o semiring.hh
- clang -std=c++11 -lstdc++ -c hypergraph.cc grammar.o
+ clang -std=c++11 -lstdc++ -c hypergraph.cc -I./msgpack-c/include/ grammar.o ./msgpack-c/lib/libmsgpack.a
grammar.o: grammar.cc grammar.hh
clang -std=c++11 -lstdc++ -c grammar.cc