0
0
Files
42piscine/C_09/git_old/ex00/libft_creator.sh
Guy Baconniere 712e06565d sync
2021-08-24 17:16:52 +02:00

7 lines
106 B
Bash
Executable File

#!/bin/sh
rm -f *.o libft.a
gcc -Wall -Wextra -Werror -c *.c
ar -cq libft.a *.o
#ar -t libft.a
#rm -f *.o