Makefile : changed pedantic flag to ISO Wpedantic

This commit is contained in:
saundersp
2025-07-08 02:41:38 +02:00
parent 03f2607bda
commit f021678852

View File

@ -3,7 +3,7 @@ OBJ_DIR := bin
SRC_DIR := .
#CFLAGS := -Og -g -rdynamic -pg -ggdb3 -D__DEBUG
CFLAGS := -O4
CFLAGS := $(CFLAGS) -Wall -Werror -Wextra -Wno-error=unused-function -pedantic
CFLAGS := $(CFLAGS) -Wall -Werror -Wextra -Wno-error=unused-function -Wpedantic
EXEC := $(OBJ_DIR)/data
SRC := $(wildcard $(SRC_DIR)/*.cpp)
HEADER := $(wildcard $(SRC_DIR)/*.hpp)