From 661b427f13fdbe032aa1d014c6c666fdf7c9ddaf Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Tue, 26 Sep 2023 09:48:31 +0200
Subject: [PATCH] MAINT: Rename make target `conan-install` to
 `conan-install-deps`

---
 Makefile | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 4be361a..9a4abd9 100644
--- a/Makefile
+++ b/Makefile
@@ -45,20 +45,21 @@ endif
 help:
 	@echo "Targets:"
 	@echo "    style - auto-format the source files."
-	@echo "    conan-install - Install locally with Conan."
-	@echo -e "    conan-create - Create conan binary package in the local conan\n"\
+	@echo "    conan-install-deps - Install dependencies locally with Conan."
+	@echo -e "    conan-create - Create Conan binary package in the local conan\n"\
 	"                   repostory."
+	@echo "    conan - Install dependencies, then build and install package."
 
 style:
 	$(CLANG_FORMAT) -i --verbose \
 	 $$(find test/ src/ include/ -type f -iname "*.cpp" -o -iname "*.h" -o -iname "*.h.in")
 .PHONY: style
 
-conan-install:
+conan-install-deps:
 	conan install . -s $(CONAN_SETTINGS) || \
 	  (echo "'conan install' failed, trying to build from sources..."; \
 	   conan install . -s $(CONAN_SETTINGS) --build=missing)
-.PHONY: conan-install
+.PHONY: conan-install-deps
 
 conan-install-debug:
 	conan install . -s $(CONAN_SETTINGS) -s build_type=Debug || \
@@ -75,7 +76,7 @@ conan-create-debug:
 
 .PHONY: conan-create-debug
 
-conan: conan-install conan-create
+conan: conan-install-deps conan-create
 .PHONY: conan
 
 doc:
-- 
GitLab