ms-queue: cleanups, convert to C11 atomics
[model-checker-benchmarks.git] / Makefile
index 26349f78d5f4852892bd87409c5e7a4caa360234..f97463a82d89b580cb74e492e2fc3c9cd905aa9e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,13 @@
-DIRS := barrier
+DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks dekker-fences
 
-.PHONY: subdirs $(DIRS)
+.PHONY: $(DIRS)
 
 all: $(DIRS)
 
+clean: $(DIRS:%=clean-%)
+
 $(DIRS):
        $(MAKE) -C $@
+
+clean-%:
+       -$(MAKE) -C $* clean