fix commit that mistakenly happened
[model-checker-benchmarks.git] / Makefile
1 DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks \
2         dekker-fences chase-lev-deque ms-queue chase-lev-deque-bugfix seqlock \
3         treiber-stack cliffc-hashtable concurrent-hashmap
4
5 .PHONY: $(DIRS)
6
7 all: $(DIRS)
8
9 clean: $(DIRS:%=clean-%)
10
11 $(DIRS):
12         $(MAKE) -C $@
13
14 clean-%:
15         -$(MAKE) -C $* clean