From e4b2d304dbca7dc4bcf9b037ca664f6f78e9677c Mon Sep 17 00:00:00 2001 From: Matheo Coquet Date: Mon, 11 Mar 2024 15:04:32 +0100 Subject: [PATCH] fix(build): update clean makefile rule --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1827eda..7f61fd8 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,10 @@ all: @cp $(BUILD_PATH)/src/$(NAME) . clean: - @make -C $(BUILD_PATH) clean + @rm -rf $(BUILD_PATH) fclean: @rm -f $(NAME) - @rm -rf $(BUILD_PATH) re: fclean all