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