From: Brian Norris Date: Thu, 6 Dec 2012 22:19:45 +0000 (-0800) Subject: Makefile: rename variable to be more clear X-Git-Tag: oopsla2013~458 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dcf7f575967bec560d500cc4f52e35c21671525c;p=model-checker.git Makefile: rename variable to be more clear --- 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)