diff options
author | kartofen <mladenovnasko0@gmail.com> | 2024-08-25 12:30:48 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2024-08-25 12:30:48 +0300 |
commit | 54f071ac7d47ef515a3f6a4db9e83f2f9aca3c8c (patch) | |
tree | 63e9958c5961f32d191c580f6960b6f9eba02f20 /Makefile | |
parent | df95e5bfca1c5e723b39f25f32401db8f9ebf6fe (diff) |
lambda nearly done
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |