norme headers

+ add -Werror flag in Makefile
This commit is contained in:
lperrey
2021-12-20 17:56:35 +01:00
parent 8959166804
commit 11d2f36307
3 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ NAME = minishell
CC = clang
CFLAGS = -Wall -Wextra $(INCLUDES) -g # add -Werror, del -g
CFLAGS = -Wall -Wextra -Werror $(INCLUDES) -g # del -g
VPATH = $(DIR_SRCS)
DIR_SRCS = srcs \