Makefile : changed pedantic flag to ISO Wpedantic
This commit is contained in:
2
Makefile
2
Makefile
@ -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)
|
||||
|
Reference in New Issue
Block a user