From 7dfa8365f8c618d8d099e503a776d5dba4abbe2a Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Tue, 28 Jun 2022 17:08:54 +0200 Subject: [PATCH] Makefile: make the clean target do project clean and the mrproper target deep clean everything --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f6141f..476ed40 100644 --- a/Makefile +++ b/Makefile @@ -3,8 +3,9 @@ all: build build: bash ./scripts/build.sh clean: - bash ./scripts/clean_dependencies.sh + bash ./scripts/clean.sh mrproper: bash ./scripts/clean.sh + bash ./scripts/clean_dependencies.sh setup: bash ./scripts/setup_project.sh