summaryrefslogtreecommitdiff
path: root/fast/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fast/Makefile')
-rw-r--r--fast/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/fast/Makefile b/fast/Makefile
index b2b697f..6d05fea 100644
--- a/fast/Makefile
+++ b/fast/Makefile
@@ -5,6 +5,8 @@ CFLAGS=-std=c++11 -O3
all: hypergraph.o main.cc
$(COMPILER) $(CFLAGS) -std=c++11 -lstdc++ -lm -lmsgpack grammar.o hypergraph.o main.cc -o fast_weaver
+test: test_grammar test_sparse_vector
+
hypergraph.o: hypergraph.cc hypergraph.hh grammar.o semiring.hh
$(COMPILER) $(CFLAGS) -g -c hypergraph.cc