summaryrefslogtreecommitdiff
path: root/fast/test/Makefile
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-08-24 17:26:05 +0100
committerPatrick Simianer <p@simianer.de>2014-08-24 17:26:05 +0100
commitf1916c39b820b7d10d1ae7d7447675c4224d8197 (patch)
tree7d3673d7784e7b3adbb6ca5b86e31058176bd376 /fast/test/Makefile
parentcef65063cec641a93973b38a48e100fdd115db44 (diff)
fixes
Diffstat (limited to 'fast/test/Makefile')
-rw-r--r--fast/test/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/fast/test/Makefile b/fast/test/Makefile
index 0140f63..65e97ef 100644
--- a/fast/test/Makefile
+++ b/fast/test/Makefile
@@ -3,7 +3,7 @@ CFLAGS=-std=c++11 -O3 -I../
TCMALLOC=/home/pks/src/weaver/fast/gperftools-2.1/lib/libtcmalloc_minimal.a -pthread
-all: test_grammar test_sparse_vector
+all: test_grammar test_sparse_vector test_parse
test_grammar: test_grammar.cc ../grammar.hh
$(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_grammar.cc -o test_grammar
@@ -11,6 +11,9 @@ test_grammar: test_grammar.cc ../grammar.hh
test_sparse_vector: test_sparse_vector.cc ../sparse_vector.hh
$(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_sparse_vector.cc -o test_sparse_vector
+test_parse: test_parse.cc ../parse.hh ../grammar.hh ../util.hh
+ $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_parse.cc -o test_parse
+
clean:
rm -f test_grammar test_sparse_vector