build: removing the debug flag

This commit is contained in:
Raphael 2025-03-18 10:07:26 +01:00
parent ba0a5ab953
commit 9067bf46fc

View file

@ -23,10 +23,10 @@ RM = rm -rf
CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/ CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/
# Flags to have the dependences (can be removed for correction) # Flags to have the dependences (can be removed for correction)
CXXFLAGS += -MMD CXXFLAGS += -MMD
# Flags to have the debug (can be removed for correction) # Flags to have the debug
DEBUG = -g3 # DEBUG = -g3
DEBUG += -fsanitize=address # DEBUG += -fsanitize=address
CXXFLAGS += $(DEBUG) # CXXFLAGS += $(DEBUG)
# Sources # Sources
SRC = Bureaucrat.cpp \ SRC = Bureaucrat.cpp \