X-Git-Url: http://plrg.eecs.uci.edu/git/?p=model-checker.git;a=blobdiff_plain;f=Makefile;h=764b8abf1bd2050641b498b06736f8990ca14ad3;hp=d530fee70ca50bb1702c7c098c565c6cdf28edb9;hb=b2079b62d3578a75e342c012716aa214e3228d42;hpb=61eb460ac03bd32140cf1213383251f3e57f7fa8 diff --git a/Makefile b/Makefile index d530fee..764b8ab 100644 --- a/Makefile +++ b/Makefile @@ -61,4 +61,16 @@ PHONY += tests tests: $(LIB_SO) $(MAKE) -C $(TESTS_DIR) +BENCHMARKS := benchmarks + +PHONY += benchmarks +benchmarks: $(LIB_SO) + @if ! test -d $(BENCHMARKS); then \ + echo "Directory $(BENCHMARKS) does not exist" && \ + echo "Please clone the benchmarks repository" && \ + echo && \ + exit 1; \ + fi + $(MAKE) -C $(BENCHMARKS) + .PHONY: $(PHONY)