aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2024-08-25 12:30:48 +0300
committerkartofen <mladenovnasko0@gmail.com>2024-08-25 12:30:48 +0300
commit54f071ac7d47ef515a3f6a4db9e83f2f9aca3c8c (patch)
tree63e9958c5961f32d191c580f6960b6f9eba02f20 /Makefile
parentdf95e5bfca1c5e723b39f25f32401db8f9ebf6fe (diff)
lambda nearly done
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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)