From 8a192b734e468efb758bd7ae8d843cc02f024454 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 15 Nov 2023 14:25:31 +0100 Subject: More testing --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 98f26dd..90dd071 100644 --- a/makefile +++ b/makefile @@ -10,7 +10,7 @@ INC = ${CURDIR}/inc SRCS = $(wildcard $(SRC)/*.c) $(wildcard $(SRC)/*/*.c) OBJS = $(patsubst $(SRC)/%.c, $(BUILD)/%.o, $(SRCS)) -CFLAGS_DEBUG = -Wno-error -g -O0 -Wno-unused -fsanitize=address,undefined,leak +CFLAGS_DEBUG = -DDEBUG=1 -Wno-error -g -O0 -Wno-unused -fsanitize=address,undefined,leak CFLAGS_WARNINGS = -Wall -Wextra -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wunreachable-code -Wundef -Wold-style-definition -pedantic -Wno-switch-enum -Wframe-larger-than=512 -Wstack-usage=1024 CFLAGS = $(CFLAGS_WARNINGS) -std=c99 -Ofast -I$(INC) -lm -- cgit v1.2.3