deque: add test driver, add print messages for now for resize method and if we pull...
[model-checker-benchmarks.git] / Makefile
index 028a9466e4e660f520b300101f720553b8f3e01f..326c00c0fbdfd602ddc02c217eee78566923f214 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,13 @@
-DIRS := barrier mcs-lock
+DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks dekker-fences chase-lev-deque
 
-.PHONY: subdirs $(DIRS)
+.PHONY: $(DIRS)
 
 all: $(DIRS)
 
+clean: $(DIRS:%=clean-%)
+
 $(DIRS):
        $(MAKE) -C $@
+
+clean-%:
+       -$(MAKE) -C $* clean