diff options
author | Patrick Simianer <p@simianer.de> | 2014-07-22 00:34:01 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-07-22 00:34:01 +0200 |
commit | 4b7b2693e829166ccec8707b59fb2bc26179551b (patch) | |
tree | 1c103865488aa8cefabf9714cd571066135b8ca4 /fast/test | |
parent | 02bbe0c6bc69283a988caf8f0ab3dadb5d9d72b5 (diff) |
simple sparse vector type
Diffstat (limited to 'fast/test')
-rw-r--r-- | fast/test/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fast/test/Makefile b/fast/test/Makefile new file mode 100644 index 0000000..3e01dc5 --- /dev/null +++ b/fast/test/Makefile @@ -0,0 +1,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 + |