From 98d2a4486b0be10d15a4c0ee9ddbf69e8ee66b54 Mon Sep 17 00:00:00 2001 From: Rob van der Linde <robvdl@gmail.com> Date: Fri, 29 Mar 2024 14:19:47 +1300 Subject: [PATCH] tools: add make clean to Makefile This just removes the build and reports folder, for this command, don't suppress the command but show the user what it's running. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index fc03a32..1435e16 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,10 @@ build : @pip wheel --no-deps --wheel-dir build . +.PHONY : clean +clean : + rm -rf build/ reports/ + .PHONY : lint lint : @ruff check