patches that old versions of the benchmarks (mcs-lock, rcu & seqlock) used
[model-checker-benchmarks.git] / Makefile
1 DIRS := ms-queue linuxrwlocks mcs-lock \
2         chase-lev-deque-bugfix ticket-lock seqlock read-copy-update \
3         concurrent-hashmap spsc-bugfix mpmc-queue
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