blob: b2b697fd2aebfc56da5bb9ded5b2331c9bee7d2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
COMPILER=clang
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
hypergraph.o: hypergraph.cc hypergraph.hh grammar.o semiring.hh
$(COMPILER) $(CFLAGS) -g -c hypergraph.cc
grammar.o: grammar.cc grammar.hh
$(COMPILER) $(CFLAGS) -g -c grammar.cc
test_grammar: test_grammar.cc grammar.o
$(COMPILER) $(CFLAGS) -lstdc++ -lm grammar.o test_grammar.cc -o test_grammar
test_sparse_vector: test_sparse_vector.cc sparse_vector.hh
$(COMPILER) $(CFLAGS) -lstdc++ -lm test_sparse_vector.cc -o test_sparse_vector
clean:
rm -f fast_weaver hypergraph.o grammar.o test_grammar test_sparse_vector
|