From dcf7f575967bec560d500cc4f52e35c21671525c Mon Sep 17 00:00:00 2001
From: Brian Norris <banorris@uci.edu>
Date: Thu, 6 Dec 2012 14:19:45 -0800
Subject: [PATCH] Makefile: rename variable to be more clear

---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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)
-- 
2.34.1