X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=835f7d12a72297163e67d5db567058d989a97a79;hb=faf43225ff0d1a0091f5e489714de0c26d24d02f;hp=26349f78d5f4852892bd87409c5e7a4caa360234;hpb=75b832bf593aa334b7c54293babe43b0e3e17076;p=model-checker-benchmarks.git diff --git a/Makefile b/Makefile index 26349f7..835f7d1 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,15 @@ -DIRS := barrier +DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks \ + dekker-fences chase-lev-deque ms-queue chase-lev-deque-bugfix \ + concurrent-hashmap -.PHONY: subdirs $(DIRS) +.PHONY: $(DIRS) all: $(DIRS) +clean: $(DIRS:%=clean-%) + $(DIRS): $(MAKE) -C $@ + +clean-%: + -$(MAKE) -C $* clean