summaryrefslogtreecommitdiff
path: root/fast/test/Makefile
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-07-23 12:57:31 +0200
committerPatrick Simianer <p@simianer.de>2014-07-23 12:57:31 +0200
commit931401b65f5a06bdb1569c33044679694d35fe41 (patch)
tree57a30fb372336ecb29997aed22a34fcb3671527b /fast/test/Makefile
parent4b7b2693e829166ccec8707b59fb2bc26179551b (diff)
cosmetic
Diffstat (limited to 'fast/test/Makefile')
-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
-