add concurrent hashmap
[model-checker-benchmarks.git] / Makefile
index 26349f78d5f4852892bd87409c5e7a4caa360234..003ac10bc801323d03126335ea55e3bf225a7ee0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,15 @@
-DIRS := barrier
+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