blob: 3e01dc5b7f3619519ed43144fe4bc62679c1aa15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
COMPILER=clang
CFLAGS=-std=c++11 -O3
test_grammar: test_grammar.cc ../grammar.o
$(COMPILER) $(CFLAGS) ../grammar.o test_grammar.cc
test_sparse_vector: test_sparse_vector.cc
$(COMPILER) $(CFLAGS) -lm test_sparse_vector.cc
clean:
rm -f test_grammar test_sparse_vector
|