add thread choosing in switch func
[c11tester.git] / Makefile
index c1d0e232f73aa3c0a089e46de596af5d7d828b89..4f83cd99a12883b2954d075a72e1f52353891730 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,11 +18,9 @@ LDFLAGS := -ldl
 SHARED := -Wl,-undefined,dynamic_lookup -dynamiclib
 endif
 
-TESTS_DIR := test
-
 MARKDOWN := doc/Markdown/Markdown.pl
 
-all: $(LIB_SO) tests README.html
+all: $(LIB_SO) README.html
 
 debug: CPPFLAGS += -DCONFIG_DEBUG
 debug: all
@@ -58,7 +56,6 @@ $(LIB_SO): $(OBJECTS)
 PHONY += clean
 clean:
        rm -f *.o *.so .*.d *.pdf *.dot
-       $(MAKE) -C $(TESTS_DIR) clean
 
 PHONY += mrclean
 mrclean: clean
@@ -68,10 +65,6 @@ PHONY += tags
 tags:
        ctags -R
 
-PHONY += tests
-tests: $(LIB_SO)
-#      $(MAKE) -C $(TESTS_DIR)
-
 BENCH_DIR := benchmarks
 
 PHONY += benchmarks