summaryrefslogtreecommitdiff
path: root/fast/test
diff options
context:
space:
mode:
Diffstat (limited to 'fast/test')
-rw-r--r--fast/test/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/fast/test/Makefile b/fast/test/Makefile
deleted file mode 100644
index 3e01dc5..0000000
--- a/fast/test/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-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
-