From 313994b43bf75de67c187262f2c722553a9d7b16 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 2 May 2025 15:25:01 +0200 Subject: [PATCH] fix(09): patching the Makefile Precompile Flags --- cpp09/ex02/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp09/ex02/Makefile b/cpp09/ex02/Makefile index 6222c23..8e8dac7 100644 --- a/cpp09/ex02/Makefile +++ b/cpp09/ex02/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/05/01 15:58:53 by rparodi ### ########.fr # +# Updated: 2025/05/02 15:21:01 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -75,7 +75,7 @@ re: header fclean all $(NAME): $(OBJ) @mkdir -p $(OBJDIRNAME) @printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n' - @$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(CPPFLAGS) -o $(NAME) $(OBJ) + @$(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $(NAME) $(OBJ) # Creating the objects $(OBJDIRNAME)/%.o: %.cpp