From 6e9cdf76b24e33567c875c2333fd8d7b956244c9 Mon Sep 17 00:00:00 2001 From: Evgeniy Zayats Date: Thu, 2 Jan 2025 00:05:18 +0300 Subject: [PATCH] Makefile: clean substituted binaries closes #918 Signed-off-by: Evgeniy Zayats --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 17db59430..198042734 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ VENV_DIR := venv.pytest PYTHON := python3.12 PIP := pip3.12 ENV_FILE := .env +BINARIES := neo-go neofs-adm neofs-cli neofs-ir neofs-lens neofs-node neofs-rest-gw neofs-s3-authmate neofs-s3-gw SHELL ?= bash @@ -26,4 +27,7 @@ venv.pytest: @echo "Virtual environment created and customized." clean: + @echo "Removing binaries: $(BINARIES)" + rm -f $(BINARIES) + @echo "Removing python venv" rm -rf venv.*