aboutsummaryrefslogtreecommitdiff
path: root/c09/ex00
diff options
context:
space:
mode:
Diffstat (limited to 'c09/ex00')
-rwxr-xr-x[-rw-r--r--]c09/ex00/libft_creator.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/c09/ex00/libft_creator.sh b/c09/ex00/libft_creator.sh
index f799ee2..9c0aefa 100644..100755
--- 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