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