raw elimination-backoff code from paper
[model-checker-benchmarks.git] / Makefile
index 028a9466e4e660f520b300101f720553b8f3e01f..003ac10bc801323d03126335ea55e3bf225a7ee0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,15 @@
-DIRS := barrier mcs-lock
+DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks \
+       dekker-fences chase-lev-deque ms-queue chase-lev-deque-bugfix seqlock \
+       treiber-stack cliffc-hashtable concurrent-hashmap
 
-.PHONY: subdirs $(DIRS)
+.PHONY: $(DIRS)
 
 all: $(DIRS)
 
+clean: $(DIRS:%=clean-%)
+
 $(DIRS):
        $(MAKE) -C $@
+
+clean-%:
+       -$(MAKE) -C $* clean