X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=764b8abf1bd2050641b498b06736f8990ca14ad3;hb=d5188b9694c29e0d776a643965f2461a1fbbe5e1;hp=d530fee70ca50bb1702c7c098c565c6cdf28edb9;hpb=c832cb55af09e735821ae3463bc37c29d3fa27c8;p=model-checker.git 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)