X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=9b20f4c8a65632c7d0f1c25e18417b38724c9ff2;hb=dcf7f575967bec560d500cc4f52e35c21671525c;hp=c363876dfd3fef30a0f2a3ecef3832949854c023;hpb=dacd717b37c9043818e9dbd512a8e77e5ec736a1;p=model-checker.git diff --git a/Makefile b/Makefile index c363876..9b20f4c 100644 --- a/Makefile +++ b/Makefile @@ -64,16 +64,16 @@ PHONY += tests tests: $(LIB_SO) $(MAKE) -C $(TESTS_DIR) -BENCHMARKS := benchmarks +BENCH_DIR := benchmarks PHONY += benchmarks benchmarks: $(LIB_SO) - @if ! test -d $(BENCHMARKS); then \ - echo "Directory $(BENCHMARKS) does not exist" && \ + @if ! test -d $(BENCH_DIR); then \ + echo "Directory $(BENCH_DIR) does not exist" && \ echo "Please clone the benchmarks repository" && \ echo && \ exit 1; \ fi - $(MAKE) -C $(BENCHMARKS) + $(MAKE) -C $(BENCH_DIR) .PHONY: $(PHONY)