X-Git-Url: http://demsky.eecs.uci.edu/git/?p=model-checker-benchmarks.git;a=blobdiff_plain;f=Makefile;h=e988a49df3d81c24a7310253e9268876de538cf0;hp=028a9466e4e660f520b300101f720553b8f3e01f;hb=77847ecd3fa6a643302770491928787ba143cde1;hpb=43509b349e5d7e4d7044ec462cebe11535d9dd54 diff --git a/Makefile b/Makefile index 028a946..e988a49 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,14 @@ -DIRS := barrier mcs-lock +DIRS := barrier mcs-lock mpmc-queue spsc-queue spsc-bugfix linuxrwlocks \ + dekker-fences chase-lev-deque ms-queue chase-lev-deque-bugfix -.PHONY: subdirs $(DIRS) +.PHONY: $(DIRS) all: $(DIRS) +clean: $(DIRS:%=clean-%) + $(DIRS): $(MAKE) -C $@ + +clean-%: + -$(MAKE) -C $* clean