From 2150441d481c9bc1c6fa60379b808f45e2b8e8c7 Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger <74497638+sebaschi@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:57:17 +0200 Subject: [PATCH] Add Makefile entry that also gets rid of __pycache__ --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 6192f1f..0489592 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,2 +1,5 @@ clean: - rm *.o *.txt *.out *.exe + rm *.o *.txt *.out + +sclean: + sudo rm -rf *.o *.txt *.out __pycache__