summaryrefslogtreecommitdiff
path: root/fast/Makefile
blob: 4aea1ac72496d2259934d4ed7b75ab25a7815cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
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