projects
/
model-checker-benchmarks.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
chase-lev-dequeue: fix compiler warning
[model-checker-benchmarks.git]
/
Makefile
1
DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks dekker-fences chase-lev-deque ms-queue
2
3
.PHONY: $(DIRS)
4
5
all: $(DIRS)
6
7
clean: $(DIRS:%=clean-%)
8
9
$(DIRS):
10
$(MAKE) -C $@
11
12
clean-%:
13
-$(MAKE) -C $* clean