X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker-benchmarks.git;a=blobdiff_plain;f=Makefile;h=d4f922ce0010bfc665c8b727423a843e3fc3e92f;hp=028a9466e4e660f520b300101f720553b8f3e01f;hb=2f3d40c4e6a817013804e62e0009cf6247d95321;hpb=43509b349e5d7e4d7044ec462cebe11535d9dd54 diff --git a/Makefile b/Makefile index 028a946..d4f922c 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ -DIRS := barrier mcs-lock +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