From 14914f50c3de6c5444e13cf67db064b03c1c90ef Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 16 Jul 2019 12:58:13 +0200 Subject: c09 passed, c10 start, exam00 and exam01 --- c09/ex00/libft_creator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c09/ex00/libft_creator.sh') diff --git a/c09/ex00/libft_creator.sh b/c09/ex00/libft_creator.sh index 9c0aefa..796b263 100755 --- a/c09/ex00/libft_creator.sh +++ b/c09/ex00/libft_creator.sh @@ -1,4 +1,4 @@ #!/bin/sh -gcc -c ft_putchar.c ft_swap.c ft_putstr.c ft_strlen.c ft_strcmp.c +gcc -Wall -Wextra -Werror -c ft_putchar.c ft_swap.c ft_putstr.c ft_strlen.c ft_strcmp.c ar -rs libft.a ft_putchar.o ft_swap.o ft_putstr.o ft_strlen.o ft_strcmp.o rm -f ft_putchar.o ft_swap.o ft_putstr.o ft_strlen.o ft_strcmp.o -- cgit