From 4e72caefbec4c3690d98a51d0133ec6aa16d8928 Mon Sep 17 00:00:00 2001 From: Raphael Date: Wed, 26 Mar 2025 14:38:40 +0100 Subject: [PATCH] build: removing the debug flags for ex02 --- cpp06/ex02/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp06/ex02/Makefile b/cpp06/ex02/Makefile index 46995cb..c4b06b4 100644 --- a/cpp06/ex02/Makefile +++ b/cpp06/ex02/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/03/26 12:39:59 by rparodi ### ########.fr # +# Updated: 2025/03/26 14:38:21 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -25,9 +25,9 @@ CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/ # Flags to have the dependences (can be removed for correction) CXXFLAGS += -MMD # Flags to have the debug (can be removed for correction) -DEBUG = -g3 +# DEBUG = -g3 # DEBUG += -fsanitize=address -CXXFLAGS += $(DEBUG) +# CXXFLAGS += $(DEBUG) # Sources SRC = main.cpp