aboutsummaryrefslogtreecommitdiff
path: root/c09/ex00/libft_creator.sh
diff options
context:
space:
mode:
authorCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-16 12:58:13 +0200
committerCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-16 12:58:13 +0200
commit66635d69fa00e335a091d7e6f2b358cbaaf205e4 (patch)
tree3ecf5a41b4541980ba0287a431681cd5ae25ad84 /c09/ex00/libft_creator.sh
parent11114fd684250943de56c4f73ab45c97f2aaf83a (diff)
downloadpiscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.tar.gz
piscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.tar.bz2
piscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.zip
c09 passed, c10 start, exam00 and exam01
Diffstat (limited to 'c09/ex00/libft_creator.sh')
-rwxr-xr-xc09/ex00/libft_creator.sh2
1 files changed, 1 insertions, 1 deletions
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