From a660c66c0131db351b98ed78613b801572f40819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Wed, 10 Apr 2024 12:52:32 +0200 Subject: [PATCH] Update install script with prefix --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fed862..b138f94 100644 --- a/Makefile +++ b/Makefile @@ -43,9 +43,10 @@ clean: ## Clean the tests info $(call ClearTests) @echo ">>> Done"; +prefix = "/usr/local" install: ## Install library @echo ">>> Installing PyClassifiers..."; - @cmake --install $(f_release) + @cmake --install $(f_release) --prefix $(prefix) @echo ">>> Done"; debug: ## Build a debug version of the project