From 54f071ac7d47ef515a3f6a4db9e83f2f9aca3c8c Mon Sep 17 00:00:00 2001 From: kartofen Date: Sun, 25 Aug 2024 12:30:48 +0300 Subject: lambda nearly done --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b474b62..240e4f8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ ifdef PROD CFLAGS := -std=c99 -Wpedantic -O3 -s # production flags else CFLAGS := -std=c99 -Wall -Wextra -Wpedantic -Wshadow -Wpointer-arith \ - -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -g -DDEBUG + -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -g3 -DDEBUG ifdef MEMDEBUG CFLAGS += -DENABLE_MEMDEBUG @@ -27,7 +27,7 @@ OBJS = $(SRCS:$(SRC)/%.c=$(OBJ)/%-$(FLAGHASH).o) DEPS = $(OBJS:%.o=%.d) -include $(DEPS) -.PHONY: all clean $(NAME) analyze valgrind +.PHONY: all clean $(NAME) analyze valgrind cppcheck .DEFAULT_GOAL := all all: $(NAME) -- cgit v1.2.3