Skip to content

Commit

Permalink
tools: add make clean to Makefile
Browse files Browse the repository at this point in the history
This just removes the build and reports folder, for this command, don't suppress the command but show the user what it's running.
  • Loading branch information
robvdl committed Mar 29, 2024
1 parent 8a43412 commit 98d2a44
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
build :
@pip wheel --no-deps --wheel-dir build .

.PHONY : clean
clean :
rm -rf build/ reports/

.PHONY : lint
lint :
@ruff check
Expand Down

0 comments on commit 98d2a44

Please sign in to comment.