diff options
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) |