From 217bcb0d4e3ba60604921cb40d5a11a64f93cfc7 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 15 Jul 2019 10:20:37 +0200 Subject: c08 strdup malloc + 1 for \0, c09 begin --- c09/ex00/libft_creator.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 c09/ex00/libft_creator.sh (limited to 'c09/ex00') diff --git a/c09/ex00/libft_creator.sh b/c09/ex00/libft_creator.sh old mode 100644 new mode 100755 index f799ee2..9c0aefa --- a/c09/ex00/libft_creator.sh +++ b/c09/ex00/libft_creator.sh @@ -1,3 +1,4 @@ #!/bin/sh -gcc -c *.c -ar -rcs libft.a *.o +gcc -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