projects
/
model-checker-benchmarks.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
typo
[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