aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)